diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-04-27 18:37:41 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-04-27 18:37:41 +0200 |
commit | 74b1fc6576fa920094463e6e4f1528bc7a25d6d0 (patch) | |
tree | 0eaf37372866eca87cc989b62ffae599e0338c9c /kdesktop/kxdglauncher.cpp | |
parent | 62d43d23e6dc10a351e64b95724810a94ceb1f0a (diff) | |
download | tdebase-74b1fc6576fa920094463e6e4f1528bc7a25d6d0.tar.gz tdebase-74b1fc6576fa920094463e6e4f1528bc7a25d6d0.zip |
Cleanup output clutter
Diffstat (limited to 'kdesktop/kxdglauncher.cpp')
-rw-r--r-- | kdesktop/kxdglauncher.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdesktop/kxdglauncher.cpp b/kdesktop/kxdglauncher.cpp index 2ef042ed9..9d689d95f 100644 --- a/kdesktop/kxdglauncher.cpp +++ b/kdesktop/kxdglauncher.cpp @@ -108,7 +108,7 @@ int main( int argc, char **argv) TQDir myqdir; if (myqdir.exists(getDocumentPath(), TRUE) == true) { if (args->isSet( "getpath" ) == true) { - printf("%s\n\r", (const char *)getDocumentPath().local8Bit()); + printf("%s\n", (const char *)getDocumentPath().local8Bit()); return 0; } else { @@ -152,7 +152,7 @@ int main( int argc, char **argv) config.writeEntry("XDG_DOCUMENTS_DIR", TQString("\"") + xdgModifiedDirectory + TQString("\""), true); config.sync(); if (args->isSet( "getpath" ) == true) { - printf("%s\n\r", (const char *)getDocumentPath().local8Bit()); + printf("%s\n", (const char *)getDocumentPath().local8Bit()); return 0; } else { @@ -177,12 +177,12 @@ int main( int argc, char **argv) } } else { - printf("[kxdglauncher] XDG variable not recognized\n\r"); + printf("[kxdglauncher] XDG variable not recognized\n"); return 1; } } else { - printf("[kxdglauncher] Please specify the desired XDG variable name with --xdgname\n\r"); + printf("[kxdglauncher] Please specify the desired XDG variable name with --xdgname\n"); return 1; } } |