summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFat-Zer <fatzer2@gmail.com>2025-07-02 13:43:00 +0000
committerSlávek Banko <slavek.banko@axis.cz>2025-07-03 18:21:37 +0200
commitc2b18a1e2cf639bcd544cb23664e36593ee2932a (patch)
tree5113b9ad1dee639a2ed0275d422fc087c20eed9f
parente7164133c30e5e4b64cb88177624e8dcd5b13684 (diff)
downloadtdebase-c2b18a1e.tar.gz
tdebase-c2b18a1e.zip
[minor] tdeioslave/media: remove a trailing \n in the error string
Note that other strings assigned to m_errorStr don't have a trailing endline. Signed-off-by: Fat-Zer <fatzer2@gmail.com>
-rw-r--r--tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp b/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp
index 90f3caa3f..51cd887e0 100644
--- a/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp
+++ b/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp
@@ -50,7 +50,7 @@ const Medium MountHelper::findMedium(const TQString &device)
DCOPReply reply = mediamanager.call("properties", device);
if (!reply.isValid())
{
- m_errorStr = i18n("The TDE mediamanager is not running.\n");
+ m_errorStr = i18n("The TDE mediamanager is not running.");
return Medium(TQString::null, TQString::null, TQString::null);
}
const Medium &medium = Medium::create(reply);