diff options
author | Alessandro Portale <aportale@trolltech.com> | 2009-06-07 21:21:47 (GMT) |
---|---|---|
committer | Alessandro Portale <aportale@trolltech.com> | 2009-06-07 21:21:47 (GMT) |
commit | 7661082e4c1851ab2fd6409d8689dc8b08d793b9 (patch) | |
tree | f4a8c192bc60f607b8e7597294507bc10ccd2cb3 | |
parent | 267891cb23e0e751873f9a6cf5dd951287c0e5e5 (diff) | |
download | Qt-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.cpp | 7 |
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) |