4136158
diff -Nur qt-x11-free-3.3.5.orig/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp qt-x11-free-3.3.5/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp
4136158
--- qt-x11-free-3.3.5.orig/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp	2005-10-13 16:09:36.000000000 +0200
4136158
+++ qt-x11-free-3.3.5/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp	2005-10-13 16:09:31.000000000 +0200
4136158
@@ -306,8 +306,8 @@
4136158
 
4136158
         currentIMKey = key;
4136158
 
4136158
-	qDebug( "QMultiInputContext::changeInputMethod(): index=%d, slave=%s",
4136158
-		imIndex, (const char *)_slave->identifierName() );
4136158
+	/* qDebug( "QMultiInputContext::changeInputMethod(): index=%d, slave=%s",
4136158
+		imIndex, (const char *)_slave->identifierName() ); */
4136158
     }
4136158
 }
4136158
 
4136158
diff -Nur qt-x11-free-3.3.5.orig/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp qt-x11-free-3.3.5/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp
4136158
--- qt-x11-free-3.3.5.orig/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp	2005-10-13 16:09:36.000000000 +0200
4136158
+++ qt-x11-free-3.3.5/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp	2005-10-13 16:09:31.000000000 +0200
4136158
@@ -140,7 +140,7 @@
4136158
         // only one character. See description of
4136158
         // QInputContext::filterEvent() about key compression.
4136158
         val = text[0].unicode();
4136158
-        qDebug( "str = %s", (const char*)keyevent->text().local8Bit() );
4136158
+        // qDebug( "str = %s", (const char*)keyevent->text().local8Bit() );
4136158
     }
4136158
 
4136158
     // Store value
4136158
@@ -164,14 +164,14 @@
4136158
 
4136158
 void QSimpleInputContext::setFocus()
4136158
 {
4136158
-    qDebug( "QSimpleInputContext: %p->setFocus(), focusWidget()=%p",
4136158
-            this, focusWidget() );
4136158
+    /* qDebug( "QSimpleInputContext: %p->setFocus(), focusWidget()=%p",
4136158
+            this, focusWidget() ); */
4136158
 }
4136158
 
4136158
 void QSimpleInputContext::unsetFocus()
4136158
 {
4136158
-    qDebug( "QSimpleInputContext: %p->unsetFocus(), focusWidget()=%p",
4136158
-            this, focusWidget() );
4136158
+    /* qDebug( "QSimpleInputContext: %p->unsetFocus(), focusWidget()=%p",
4136158
+            this, focusWidget() ); */
4136158
     reset();
4136158
 }
4136158
 
4136158
@@ -188,8 +188,8 @@
4136158
     case QEvent::MouseButtonRelease:
4136158
     case QEvent::MouseButtonDblClick:
4136158
     case QEvent::MouseMove:
4136158
-        qDebug( "QSimpleInputContext::mouseHandler: "
4136158
-                "x=%d, type=%d, button=%d, state=%d", x, type, button, state );
4136158
+        /* qDebug( "QSimpleInputContext::mouseHandler: "
4136158
+                "x=%d, type=%d, button=%d, state=%d", x, type, button, state ); */
4136158
         break;
4136158
     default:
4136158
         break;
4136158
@@ -240,7 +240,7 @@
4136158
 
4136158
     // no entries were found
4136158
     if ( p == composeTable->data + composeTable->size ) {
4136158
-        qDebug( "no match" );
4136158
+        // qDebug( "no match" );
4136158
         clearComposeBuffer();
4136158
         return FALSE;
4136158
     }
4136158
@@ -250,18 +250,18 @@
4136158
 
4136158
         // check if partial match
4136158
         if ( composeBuffer[i] == 0 && p->keys[i] ) {
4136158
-            qDebug("partial match");
4136158
+            // qDebug("partial match");
4136158
             return TRUE;
4136158
         }
4136158
 
4136158
         if ( composeBuffer[i] != p->keys[i] ) {
4136158
-            qDebug("different entry");
4136158
+            // qDebug("different entry");
4136158
             clearComposeBuffer();
4136158
             return i!=0;
4136158
         }
4136158
     }
4136158
 
4136158
-    qDebug("match exactly");
4136158
+    // qDebug("match exactly");
4136158
 
4136158
     // match exactly
4136158
     commitChar( p->value );
4136158
diff -Nur qt-x11-free-3.3.5.orig/src/kernel/qinputcontext.cpp qt-x11-free-3.3.5/src/kernel/qinputcontext.cpp
4136158
--- qt-x11-free-3.3.5.orig/src/kernel/qinputcontext.cpp	2005-10-13 16:09:37.000000000 +0200
4136158
+++ qt-x11-free-3.3.5/src/kernel/qinputcontext.cpp	2005-10-13 16:09:31.000000000 +0200
4136158
@@ -526,17 +526,17 @@
4136158
 	return;
4136158
 
4136158
     if ( type == QEvent::IMStart ) {
4136158
-	qDebug( "sending IMStart with %d chars to %p",
4136158
-		text.length(), receiver );
4136158
+	/* qDebug( "sending IMStart with %d chars to %p",
4136158
+		text.length(), receiver ); */
4136158
 	event = new QIMEvent( type, text, cursorPosition );
4136158
     } else if ( type == QEvent::IMEnd ) {
4136158
-	qDebug( "sending IMEnd with %d chars to %p, text=%s",
4136158
-		text.length(), receiver, (const char*)text.local8Bit() );
4136158
+	/* qDebug( "sending IMEnd with %d chars to %p, text=%s",
4136158
+		text.length(), receiver, (const char*)text.local8Bit() ); */
4136158
 	event = new QIMEvent( type, text, cursorPosition );
4136158
     } else if ( type == QEvent::IMCompose ) {
4136158
-	qDebug( "sending IMCompose to %p with %d chars, cpos=%d, sellen=%d, text=%s",
4136158
+	/* qDebug( "sending IMCompose to %p with %d chars, cpos=%d, sellen=%d, text=%s",
4136158
 		receiver, text.length(), cursorPosition, selLength,
4136158
-		(const char*)text.local8Bit() );
4136158
+		(const char*)text.local8Bit() ); */
4136158
 	event = new QIMComposeEvent( type, text, cursorPosition, selLength );
4136158
     }
4136158
 
81dd910
--- qt-x11-free-3.3.5/plugins/src/inputmethods/xim/qximinputcontext_x11.cpp.quiet	2005-10-13 19:00:56.000000000 +0200
81dd910
+++ qt-x11-free-3.3.5/plugins/src/inputmethods/xim/qximinputcontext_x11.cpp	2005-10-25 15:36:43.000000000 +0200
81dd910
@@ -356,7 +356,7 @@
81dd910
 #if !defined(QT_NO_XIM)
81dd910
     fontsetRefCount++;
81dd910
     if (! qt_xim) {
81dd910
-	qWarning("QInputContext: no input method context available");
81dd910
+	// qWarning("QInputContext: no input method context available");
81dd910
 	return;
81dd910
     }
81dd910
 
81dd910
@@ -742,7 +742,7 @@
81dd910
 
81dd910
 void QXIMInputContext::close( const QString &errMsg )
81dd910
 {
81dd910
-    qDebug( errMsg );
81dd910
+    // qDebug( errMsg );
81dd910
     emit deletionRequested();
81dd910
 }
81dd910