summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qplatformmenu.h
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@digia.com>2014-09-30 10:42:43 +0200
committerRichard Moe Gustavsen <richard.gustavsen@digia.com>2014-10-13 22:13:18 +0200
commit5d9dcac0f2dc8da1a1ac79dbdd309654d6deabac (patch)
tree12f8ae49a5a230024287a4d3ebb788d7f03decdf /src/gui/kernel/qplatformmenu.h
parentafefc89d0ff5ad562706b5513662c112e08e1b41 (diff)
qplatformmenu: remove unused and deprecated function
Now that all platforms use the popup function that takes a target rect, lets remove the deprecated one. This is sort of important, since QtQuick controls now uses the new version. So if a (new) platform ends up only implementing the old version, that can end up not working correctly. Change-Id: I34814b3de5ea4954cf21b161e8a834e39e5534c8 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src/gui/kernel/qplatformmenu.h')
-rw-r--r--src/gui/kernel/qplatformmenu.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/kernel/qplatformmenu.h b/src/gui/kernel/qplatformmenu.h
index c832de0be6..0093ef1538 100644
--- a/src/gui/kernel/qplatformmenu.h
+++ b/src/gui/kernel/qplatformmenu.h
@@ -108,11 +108,6 @@ public:
virtual void setFont(const QFont &font) { Q_UNUSED(font); }
virtual void setMenuType(MenuType type) { Q_UNUSED(type); }
- virtual void showPopup(const QWindow *parentWindow, QPoint pos, const QPlatformMenuItem *item)
- {
- showPopup(parentWindow, QRect(pos, QSize()), item);
- }
-
virtual void showPopup(const QWindow *parentWindow, const QRect &targetRect, const QPlatformMenuItem *item)
{
Q_UNUSED(parentWindow);