remove some debug output
authorchristian <christian@christian-laptop.(none)>
Mon, 23 Aug 2010 11:39:12 +0000 (13:39 +0200)
committerchristian <christian@christian-laptop.(none)>
Mon, 23 Aug 2010 11:39:12 +0000 (13:39 +0200)
debian/changelog
debian/rules
src/vncview.cpp

index 9855e1c..e3c5a1e 100644 (file)
@@ -4,7 +4,6 @@ presencevnc (0.4) unstable; urgency=low
   * Remember VNC servers and passwords
   * Fix tearing after scrolling
   * Hide toolbar in fullscreen mode
-  * Use less CPU when minimized
 
  -- Christian Pulvermacher <pulvermacher@gmx.de>  Sat, 07 Aug 2010 11:52:56 +0200
 
index 90f5757..25b70af 100755 (executable)
@@ -5,7 +5,7 @@ export DH_VERBOSE=1
 #currently builds a maemo-only package
 
 #comment this line for quick builds
-#buildlibs=foo
+buildlibs=foo
 
 SOURCEDIR=./
 BUILDDIR=debian/build/
index ae6c26d..7987e1c 100644 (file)
@@ -95,7 +95,6 @@ VncView::~VncView()
 
 void VncView::forceFullRepaint()
 {
-       kDebug(5011) << "forceFullRepaint()";
        force_full_repaint = true;
        repaint();
 }
@@ -112,8 +111,6 @@ bool VncView::eventFilter(QObject *obj, QEvent *event)
                 event->type() == QEvent::MouseMove)
             return true;
     }
-    if(event->type() == 200)
-           kDebug(5011) << "eventFilter: 200";
     return RemoteView::eventFilter(obj, event);
 }
 
@@ -774,7 +771,6 @@ void VncView::reloadSettings()
 void VncView::inputMethodEvent(QInputMethodEvent *event)
 {
        //TODO handle replacements
-       //TODO convert utf8 to X11 keysyms myself, should work with umlauts, kana...
        //NOTE for the return key to work Qt needs to enable multiline input, which only works for Q(Plain)TextEdit
 
        //kDebug(5011) << event->commitString() << "|" << event->preeditString() << "|" << event->replacementLength() << "|" << event->replacementStart();
@@ -785,7 +781,6 @@ void VncView::inputMethodEvent(QInputMethodEvent *event)
                        kDebug(5011) << "unhandled key";
                        continue;
                }
-               kDebug(5011) << "key: " << int(k);
                vncThread.keyEvent(k, true);
                vncThread.keyEvent(k, false);
        }