Dolphin integration: use system icons for labels in KDE
authorGrigorii Horos <horosgrisa@gmail.com>
Fri, 4 Dec 2015 13:40:15 +0000 (15:40 +0200)
committerOlivier Goffart <ogoffart@woboq.com>
Mon, 4 Jan 2016 11:57:24 +0000 (12:57 +0100)
Cherry-picked from https://github.com/owncloud/client/pull/4252

shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp

index 5ea31dce2736f0fbce620ef00a36db722357cdd0..4d3230c81846162edf4908468f9c8e9b78e74435 100644 (file)
@@ -64,13 +64,13 @@ private:
             return r;
 
         if (status.startsWith("OK"))
-            r << "ownCloud_ok";
+            r << "vcs-normal";
         if (status.startsWith("SYNC") || status.startsWith("NEW"))
-            r << "ownCloud_sync";
+            r << "vcs-update-required";
         if (status.startsWith("IGNORE") || status.startsWith("WARN"))
-            r << "ownCloud_warn";
+            r << "vcs-locally-modified-unstaged";
         if (status.startsWith("ERROR"))
-            r << "ownCloud_error";
+            r << "vcs-conflicting";
 
         if (status.contains("+SWM"))
             r << "document-share";