diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-04-27 18:36:33 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-04-27 18:36:33 +0200 |
commit | 987dc667f267a536e918194ab13d7375c3ad5537 (patch) | |
tree | 7838b6f3cd5a6086ea79067bc18a0b7cd07d72ac /tderandr | |
parent | 4730b89323e190353f4f5629632da3bde10367e5 (diff) | |
download | tdelibs-987dc667f267a536e918194ab13d7375c3ad5537.tar.gz tdelibs-987dc667f267a536e918194ab13d7375c3ad5537.zip |
Cleanup output clutter
Diffstat (limited to 'tderandr')
-rw-r--r-- | tderandr/libtderandr.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tderandr/libtderandr.cc b/tderandr/libtderandr.cc index fe9461715..a22bd08b8 100644 --- a/tderandr/libtderandr.cc +++ b/tderandr/libtderandr.cc @@ -179,7 +179,7 @@ TQString KRandrSimpleAPI::applyIccFile(TQString screenName, TQString fileName) { icc_command = TQString("xcalib \"%1\"").arg(fileName); if ((pipe_xcalib = popen(icc_command.ascii(), "r")) == NULL) { - printf("Xcalib pipe error\n\r [xcalib apply]"); + printf("Xcalib pipe error\n [xcalib apply]"); } else { if (fgets(xcalib_result, 2048, pipe_xcalib)) { @@ -248,7 +248,7 @@ TQString KRandrSimpleAPI::applyIccFile(TQString screenName, TQString fileName) { icc_command = TQString("xcalib -c"); if ((pipe_xcalib = popen(icc_command.ascii(), "r")) == NULL) { - printf("Xcalib pipe error\n\r [xcalib clear]"); + printf("Xcalib pipe error\n [xcalib clear]"); } else { if (fgets(xcalib_result, 2048, pipe_xcalib)) { @@ -403,7 +403,7 @@ TQString KRandrSimpleAPI::applySystemWideIccConfiguration(TQString kde_confdir) icc_command = TQString("xcalib \"%1\"").arg(getIccFileName(NULL, "Default", kde_confdir)); if ((pipe_xcalib = popen(icc_command.ascii(), "r")) == NULL) { - printf("Xcalib pipe error [xcalib apply]\n\r"); + printf("Xcalib pipe error [xcalib apply]\n"); } else { if (fgets(xcalib_result, 2048, pipe_xcalib)) { @@ -697,7 +697,7 @@ bool KRandrSimpleAPI::applyDisplayConfiguration(TQPtrList<SingleScreenData> scre } } else { - printf("[WARNING] Unable to find configuration for monitor %d; settings may not be correctly applied...\n\r", i); fflush(stdout); + printf("[WARNING] Unable to find configuration for monitor %d; settings may not be correctly applied...\n", i); fflush(stdout); } } freeScreenInfoStructure(randr_screen_info); @@ -1505,7 +1505,7 @@ TQString KRandrSimpleAPI::clearIccConfiguration() { icc_command = TQString("xcalib -c"); if ((pipe_xcalib = popen(icc_command.ascii(), "r")) == NULL) { - printf("Xcalib pipe error [xcalib clear]\n\r"); + printf("Xcalib pipe error [xcalib clear]\n"); } else { if (fgets(xcalib_result, 2048, pipe_xcalib)) { |