From: Olivier Goffart Date: Tue, 27 Oct 2015 14:10:24 +0000 (+0100) Subject: Dolphin integration: fix error icons X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~1500 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=30a0423f8169824a214ad36b4fba065972d3737c;p=nextcloud-desktop.git Dolphin integration: fix error icons --- diff --git a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp index 41b1bef0f..9b4d7baef 100644 --- a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp +++ b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp @@ -66,11 +66,11 @@ private: if (status.startsWith("OK")) r << "ownCloud_ok"; if (status.startsWith("SYNC") || status.startsWith("NEW")) - r << "owncloud_sync"; + r << "ownCloud_sync"; if (status.startsWith("IGNORE") || status.startsWith("WARN")) - r << "owncloud_warn"; + r << "ownCloud_warn"; if (status.startsWith("ERROR")) - r << "owncloud_error"; + r << "ownCloud_error"; if (status.contains("+SWM")) r << "document-share";