summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Portale <aportale@trolltech.com>2009-06-07 21:21:47 (GMT)
committerAlessandro Portale <aportale@trolltech.com>2009-06-07 21:21:47 (GMT)
commit7661082e4c1851ab2fd6409d8689dc8b08d793b9 (patch)
treef4a8c192bc60f607b8e7597294507bc10ccd2cb3
parent267891cb23e0e751873f9a6cf5dd951287c0e5e5 (diff)
downloadQt-7661082e4c1851ab2fd6409d8689dc8b08d793b9.zip
Qt-7661082e4c1851ab2fd6409d8689dc8b08d793b9.tar.gz
Qt-7661082e4c1851ab2fd6409d8689dc8b08d793b9.tar.bz2
Make the linker happy on non-Q_WS_S60
-rw-r--r--src/gui/kernel/qwidget.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp
index e82fbd2..69e2d84 100644
--- a/src/gui/kernel/qwidget.cpp
+++ b/src/gui/kernel/qwidget.cpp
@@ -4880,6 +4880,13 @@ void QWidget::render(QPainter *painter, const QPoint &targetOffset,
d->extra->inRenderWithPainter = false;
}
+#if !defined(Q_WS_S60)
+void QWidgetPrivate::setNativeSoftKeys(const QList<QAction*> &softkeys)
+{
+ Q_UNUSED(softkeys)
+}
+#endif // !defined(Q_WS_S60)
+
bool QWidgetPrivate::isAboutToShow() const
{
if (data.in_show)