Cleanup output clutter

(cherry picked from commit 987dc667f2)
v3.5.13-sru
Slávek Banko 11 years ago
parent 83bd0da219
commit f723e96108

@ -203,7 +203,7 @@ public:
TQWMatrix *current = m_engine->painter()->worldMatrix();
#ifdef USE_QT4
printf("[FIXME] *current = matrix * *current locks up under Qt4; bypassing for now\n\r");
printf("[FIXME] *current = matrix * *current locks up under Qt4; bypassing for now\n");
#else // USE_QT4
*current = matrix * *current;
#endif // USE_QT4

@ -1445,7 +1445,7 @@ void KToolBar::resizeEvent( TQResizeEvent *e )
}
}
// else {
// printf("[WARNING] In KToolBar::resizeEvent, but this code block should not be executing. Preventing toolbar lockup. [Code 0045]\n\r");
// printf("[WARNING] In KToolBar::resizeEvent, but this code block should not be executing. Preventing toolbar lockup. [Code 0045]\n");
// setUpdatesEnabled( true );
// }
}

@ -447,7 +447,7 @@ static int qxembed_x11_event_filter( XEvent* e)
extra->embedded = 1;
#ifdef USE_QT4
// [FIXME]
printf("[FIXME] WId not set in kdelibs/kdeui/qxembed.cpp\n\r");
printf("[FIXME] WId not set in kdelibs/kdeui/qxembed.cpp\n");
#else // USE_QT4
extra->parentWinId = e->xclient.data.l[3];
#endif // USE_QT4
@ -1320,7 +1320,7 @@ void QXEmbed::embedClientIntoWindow(TQWidget* client, WId window)
((QXEmbed*)client)->topData()->embedded = true;
#ifdef USE_QT4
// [FIXME]
printf("[FIXME] WId not set in kdelibs/kdeui/qxembed.cpp\n\r");
printf("[FIXME] WId not set in kdelibs/kdeui/qxembed.cpp\n");
#else // USE_QT4
((QXEmbed*)client)->topData()->parentWinId = window;
#endif // USE_QT4

@ -177,7 +177,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");
printf("Xcalib pipe error\n [xcalib apply]");
}
else {
fgets(xcalib_result, 2048, pipe_xcalib);
@ -242,7 +242,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");
printf("Xcalib pipe error\n [xcalib clear]");
}
else {
fgets(xcalib_result, 2048, pipe_xcalib);
@ -393,7 +393,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\n\r");
printf("Xcalib pipe error [xcalib apply]\n");
}
else {
fgets(xcalib_result, 2048, pipe_xcalib);
@ -630,7 +630,7 @@ bool KRandrSimpleAPI::applySystemwideDisplayConfiguration(TQPtrList<SingleScreen
}
}
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);
@ -1276,7 +1276,7 @@ TQString KRandrSimpleAPI::clearIccConfiguration() {
icc_command = TQString("xcalib -c");
if ((pipe_xcalib = popen(icc_command.ascii(), "r")) == NULL)
{
printf("Xcalib pipe error\n\r");
printf("Xcalib pipe error [xcalib clear]\n");
}
else {
fgets(xcalib_result, 2048, pipe_xcalib);

@ -1 +1 @@
Subproject commit 6d6796c294ca6e9b7f83c295217817c4bf486031
Subproject commit c61e5d357a65bd92df169eea934220c325873245
Loading…
Cancel
Save