┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/tooltips/tooltipmanager.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2012-02-02 15:10:45 +0100
committerPeter Penz <[email protected]>2012-02-02 16:02:29 +0100
commit9ef4b489c043a1bdfdb2931959f58e366862fe35 (patch)
treead1782a1e4966ebc4ef95fb167b7ca92421708cf /src/views/tooltips/tooltipmanager.h
parentdef780c672af2b90e8face3720e1567432b32b8d (diff)
Fix crash when opening a tab during a tooltip is shown
Thanks a lot to Mathias Tillman for finding a 100 % reliable way how to reproduce the issue and for the initial patch! BUG: 278302 FIXED-IN: 4.8.1
Diffstat (limited to 'src/views/tooltips/tooltipmanager.h')
-rw-r--r--src/views/tooltips/tooltipmanager.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/views/tooltips/tooltipmanager.h b/src/views/tooltips/tooltipmanager.h
index b13641109..4fd8f843e 100644
--- a/src/views/tooltips/tooltipmanager.h
+++ b/src/views/tooltips/tooltipmanager.h
@@ -68,11 +68,6 @@ private slots:
void showToolTip();
private:
- int toolTipMargin() const;
-
-private:
- QWidget* m_parentWidget;
-
/// Timeout from requesting a tooltip until the tooltip
/// should be shown
QTimer* m_showToolTipTimer;
@@ -86,6 +81,7 @@ private:
bool m_toolTipRequested;
bool m_metaDataRequested;
bool m_appliedWaitCursor;
+ int m_margin;
KFileItem m_item;
QRect m_itemRect;
};