summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFat-Zer <fatzer2@gmail.com>2025-07-02 13:43:00 +0000
committerFat-Zer <fatzer2@gmail.com>2025-07-02 13:43:00 +0000
commit892322a758011448f5a846a69d6af5cbc8171cc8 (patch)
treedd76e7c77667f7873429d546236d319813b19a88
parent025ed8ca827d8cd90c29ebfb8c3eaacc59e18f8c (diff)
downloadtdebase-892322a758011448f5a846a69d6af5cbc8171cc8.tar.gz
tdebase-892322a758011448f5a846a69d6af5cbc8171cc8.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 5e921ffd4..a68759d3b 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);