diff options
author | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2010-11-04 10:26:50 +0100 |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2010-11-04 11:15:47 +0100 |
commit | 3d2aae0766eceb3554f12c8ee8a46881645eef06 (patch) | |
tree | 601156b4f005d5c5d1548f64a076be13e33d6ba9 /src/libs/qmleditorwidgets/contextpanewidget.h | |
parent | 397c580dff744b1b58520585ff9a61f81b013d2c (diff) | |
download | qt-creator-3d2aae0766eceb3554f12c8ee8a46881645eef06.tar.gz |
QuickToolBars: fix cursor on Mac OS X
We have to set the cursor on Mac OS X
manually in enter and leave events.
Task-number: QTCREATORBUG-2622
Reviewed-by: Kai Koehne
Diffstat (limited to 'src/libs/qmleditorwidgets/contextpanewidget.h')
-rw-r--r-- | src/libs/qmleditorwidgets/contextpanewidget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libs/qmleditorwidgets/contextpanewidget.h b/src/libs/qmleditorwidgets/contextpanewidget.h index d7d4d83b47..ede3e2178a 100644 --- a/src/libs/qmleditorwidgets/contextpanewidget.h +++ b/src/libs/qmleditorwidgets/contextpanewidget.h @@ -64,6 +64,8 @@ protected: void mouseReleaseEvent(QMouseEvent * event); void mouseMoveEvent(QMouseEvent * event); void virtual protectedMoved(); + void leaveEvent(QEvent *); + void enterEvent(QEvent *); private: QGraphicsDropShadowEffect *m_dropShadowEffect; |