Index: /trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMLogViewer.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMLogViewer.cpp	(revision 30195)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMLogViewer.cpp	(revision 30196)
@@ -363,8 +363,6 @@
 #ifndef Q_WS_MAC
     /* No icons on the Mac */
-    mButtonsNextPrev->setIcon(0, UIIconPool::iconSet(":/list_movedown_16px.png",
-                                                     ":/list_movedown_disabled_16px.png"));
-    mButtonsNextPrev->setIcon(1, UIIconPool::iconSet(":/list_moveup_16px.png",
-                                                     ":/list_moveup_disabled_16px.png"));
+    mButtonsNextPrev->setIcon(0, UIIconPool::defaultIcon(UIIconPool::ArrowBackIcon, this));
+    mButtonsNextPrev->setIcon(1, UIIconPool::defaultIcon(UIIconPool::ArrowForwardIcon, this));
 #endif /* !Q_WS_MAC */
     connect (mButtonsNextPrev, SIGNAL (clicked (int)), this, SLOT (find (int)));
@@ -420,12 +418,11 @@
     mSearchString->setToolTip (tr ("Enter a search string here"));
 
-    mButtonsNextPrev->setTitle (0, tr ("&Next"));
-    mButtonsNextPrev->setToolTip (0, tr ("Search for the next occurrence of "
+    mButtonsNextPrev->setTitle (0, tr ("&Previous"));
+    mButtonsNextPrev->setToolTip (0, tr ("Search for the previous occurrence "
+                                         "of the string"));
+
+    mButtonsNextPrev->setTitle (1, tr ("&Next"));
+    mButtonsNextPrev->setToolTip (1, tr ("Search for the next occurrence of "
                                          "the string"));
-
-    mButtonsNextPrev->setTitle (1, tr ("&Previous"));
-    mButtonsNextPrev->setToolTip (1, tr ("Search for the previous occurrence "
-                                         "of the string"));
-
 
     mCaseSensitive->setText (tr ("C&ase Sensitive"));
@@ -515,5 +512,5 @@
                 (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return))
             {
-                mButtonsNextPrev->animateClick (0);
+                mButtonsNextPrev->animateClick (1);
                 return true;
             }
@@ -522,7 +519,7 @@
             {
                 if (e->QInputEvent::modifiers() == 0)
+                    mButtonsNextPrev->animateClick (1);
+                else if (e->QInputEvent::modifiers() == Qt::ShiftModifier)
                     mButtonsNextPrev->animateClick (0);
-                else if (e->QInputEvent::modifiers() == Qt::ShiftModifier)
-                    mButtonsNextPrev->animateClick (1);
                 return true;
             }
@@ -592,7 +589,7 @@
 {
     if (aButton == 0)
+        findBack();
+    else
         findNext();
-    else
-        findBack();
-}
-
+}
+
