Review & fixes
authorSami Rämö <sami.ramo@ixonos.com>
Mon, 16 Aug 2010 14:07:47 +0000 (17:07 +0300)
committerSami Rämö <sami.ramo@ixonos.com>
Mon, 16 Aug 2010 14:07:47 +0000 (17:07 +0300)
 - Reviewed by Jussi Laitinen

src/ui/friendlistpanel.cpp

index 8e432d6..b423b80 100644 (file)
@@ -191,7 +191,7 @@ void FriendListPanel::friendInfoReceived(QList<User *> &friendList)
 
 void FriendListPanel::hideEvent(QHideEvent *event)
 {
-    qWarning() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__;
 
     QWidget::hideEvent(event);
     updateKeyboardGrabbing();
@@ -218,7 +218,7 @@ void FriendListPanel::setFilteringLayoutVisibility(bool visible)
 
 void FriendListPanel::updateKeyboardGrabbing()
 {
-    qWarning() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__;
 
     if (!m_mainWindowIsTopmost || !isVisible()) {
         if (QWidget::keyboardGrabber() == m_filterField) {
@@ -235,7 +235,7 @@ void FriendListPanel::updateKeyboardGrabbing()
 
 void FriendListPanel::showEvent(QShowEvent *event)
 {
-    qWarning() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__;
 
     QWidget::showEvent(event);
     updateKeyboardGrabbing();
@@ -256,7 +256,7 @@ void FriendListPanel::showFriendsInList(const QList<QString> &userIDs)
 
 void FriendListPanel::topmostWindowChanged(bool mainWindowIsTopmost)
 {
-    qWarning() << __PRETTY_FUNCTION__ << mainWindowIsTopmost;
+    qDebug() << __PRETTY_FUNCTION__ << mainWindowIsTopmost;
 
     m_mainWindowIsTopmost = mainWindowIsTopmost;
     updateKeyboardGrabbing();