]> cloud.milkyroute.net Git - dolphin.git/commitdiff
The else path is never reached -> removed it (thanks to Simon St James for the hint)
authorPeter Penz <peter.penz19@gmail.com>
Mon, 22 Sep 2008 18:00:41 +0000 (18:00 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Mon, 22 Sep 2008 18:00:41 +0000 (18:00 +0000)
CCMAIL: kdedevel@etotheipiplusone.com

svn path=/trunk/KDE/kdebase/apps/; revision=863623

src/tooltipmanager.cpp

index 231f4db15fe39491f2c1a85d1f24a542928f9592..ad1dbe5d3d7776ee6cdb640402a619abcd174c05 100644 (file)
@@ -230,14 +230,8 @@ void ToolTipManager::showToolTip(KToolTipItem* tip)
         }
         y = hasRoomBelow ? m_itemRect.bottom() : m_itemRect.top() - size.height();
     } else {
-        if (hasRoomToLeft || hasRoomToRight) {
-            x = hasRoomToRight ? m_itemRect.right() : m_itemRect.left() - size.width();
-        } else {
-            // Put the tooltip at the far right of the screen. The item will be overlapped
-            // horizontally, but the y-coordinate will be adjusted afterwards so that no overlapping
-            // occurs vertically.
-            x = desktop.right() - size.width();
-        }
+        Q_ASSERT(hasRoomToLeft || hasRoomToRight);
+        x = hasRoomToRight ? m_itemRect.right() : m_itemRect.left() - size.width();
         
         // Put the tooltip at the bottom of the screen. The x-coordinate has already
         // been adjusted, so that no overlapping with m_itemRect occurs.