diff --git a/applets/kicker/plugin/draghelper.cpp b/applets/kicker/plugin/draghelper.cpp --- a/applets/kicker/plugin/draghelper.cpp +++ b/applets/kicker/plugin/draghelper.cpp @@ -110,4 +110,4 @@ return; m_dragging = dragging; emit draggingChanged(); -} \ No newline at end of file +} diff --git a/dataengines/geolocation/location_ip.cpp b/dataengines/geolocation/location_ip.cpp --- a/dataengines/geolocation/location_ip.cpp +++ b/dataengines/geolocation/location_ip.cpp @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include diff --git a/ksmserver/main.cpp b/ksmserver/main.cpp --- a/ksmserver/main.cpp +++ b/ksmserver/main.cpp @@ -195,7 +195,7 @@ if (!writeTest(path)) { if (errno == ENOSPC) - msg = i18n("Temp directory (%1) is out of disk space."); + msg = i18n("Temp directory (%1) is out of disk space.", QFile::decodeName(path)); else msg = i18n("Writing to the temp directory (%2) failed with\n " "the error '%1'", QString::fromLocal8Bit(strerror(errno)), QFile::decodeName(path)); @@ -205,9 +205,9 @@ { path += "/.ICE-unix"; if (access(path.data(), W_OK) && (errno != ENOENT)) - msg = i18n("No write access to '%1'."); + msg = i18n("No write access to '%1'.", QFile::decodeName(path)); else if (access(path.data(), R_OK) && (errno != ENOENT)) - msg = i18n("No read access to '%1'."); + msg = i18n("No read access to '%1'.", QFile::decodeName(path)); } if (!msg.isEmpty()) {