summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qtooltip.h
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-10-22 08:20:23 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-22 19:36:43 +0200
commit33d9b9f326449341d6a9afd55299e5e1ad7ad037 (patch)
tree4f33ded959a463205f89857f04251f4dc525e4ee /src/widgets/kernel/qtooltip.h
parent500ed6b628ee5b58cbf7ce696e60558a0e2f3c4d (diff)
Delete QWhatsThis() and QToolTip()
These classes are not supposed to be instantiated. QToolTip() already was declared, but not implemented. This patch just adds Q_DECL_EQ_DELETE for better diagnostics on C++11. QWhatsThis() was implemented, but appears to be unused. Since it was private to begin with, successfully compiling QtWidgets is a sufficient test. Change-Id: I698ece8f0eebbcdac7be98456dd42197b758a825 Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'src/widgets/kernel/qtooltip.h')
-rw-r--r--src/widgets/kernel/qtooltip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/kernel/qtooltip.h b/src/widgets/kernel/qtooltip.h
index 2b73695a52..860a2ccab0 100644
--- a/src/widgets/kernel/qtooltip.h
+++ b/src/widgets/kernel/qtooltip.h
@@ -53,7 +53,7 @@ QT_BEGIN_NAMESPACE
class Q_WIDGETS_EXPORT QToolTip
{
- QToolTip();
+ QToolTip() Q_DECL_EQ_DELETE;
public:
static void showText(const QPoint &pos, const QString &text, QWidget *w = 0);
static void showText(const QPoint &pos, const QString &text, QWidget *w, const QRect &rect);