From a50d85255a9fab5be4c48e33a46b6cae287c2068 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 12 Sep 2012 15:29:15 +0200 Subject: Fix warnings about unused variables in Qt Designer. Apparently, the function declarations are a copy&paste error. Change-Id: If42728b3c545fb93638e73566af5d8937fb5ced5 Reviewed-by: Friedemann Kleint --- src/designer/src/lib/shared/widgetfactory.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/designer/src/lib/shared/widgetfactory.cpp') diff --git a/src/designer/src/lib/shared/widgetfactory.cpp b/src/designer/src/lib/shared/widgetfactory.cpp index f41f27b76..7bcd2610f 100644 --- a/src/designer/src/lib/shared/widgetfactory.cpp +++ b/src/designer/src/lib/shared/widgetfactory.cpp @@ -832,8 +832,6 @@ bool WidgetFactory::isPassiveInteractor(QWidget *widget) if (const QWidget *parent = widget->parentWidget()) { const QString objectName = parent->objectName(); static const QString scrollAreaVContainer = QStringLiteral("qt_scrollarea_vcontainer"); - void activeFormWindowChanged(QDesignerFormWindowInterface *formWindow); - void formWindowAdded(QDesignerFormWindowInterface *formWindow); static const QString scrollAreaHContainer = QStringLiteral("qt_scrollarea_hcontainer"); if (objectName == scrollAreaVContainer || objectName == scrollAreaHContainer) { m_lastWasAPassiveInteractor = true; -- cgit v1.2.1