diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2009-04-16 10:06:15 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-04-16 10:06:15 (GMT) |
commit | c2f89fd0d9d13a0da1ecc33414860795721261a7 (patch) | |
tree | 3485ec81e3a789639809919a5e0aa5aed378702c /tools | |
parent | 5427eb07a1a87861fd321378710e77d96e92ccbd (diff) | |
download | Qt-c2f89fd0d9d13a0da1ecc33414860795721261a7.zip Qt-c2f89fd0d9d13a0da1ecc33414860795721261a7.tar.gz Qt-c2f89fd0d9d13a0da1ecc33414860795721261a7.tar.bz2 |
Remove obsolete code.
Remove the last few unnecessary directives using obsolete values of
QT_VERSION. There are a few references to old QT_VERSION's left, but
they are legitimate and should not be removed.
Reviewed-by: Trust Me
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qvfb/qvfb.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tools/qvfb/qvfb.cpp b/tools/qvfb/qvfb.cpp index b6a715c..62149a1 100644 --- a/tools/qvfb/qvfb.cpp +++ b/tools/qvfb/qvfb.cpp @@ -217,16 +217,10 @@ QVFb::QVFb( int display_id, int w, int h, int d, int r, const QString &skin, Dis setWindowIcon( pix ); rateDlg = 0; refreshRate = 30; -#if QT_VERSION >= 0x030000 - // When compiling with Qt 3 we need to create the menu first to - // avoid scroll bars in the main window + // Create the menu first to avoid scroll bars in the main window createMenu( menuBar() ); init( display_id, w, h, d, r, skin ); enableCursor( true ); -#else - init( display_id, w, h, d, r, skin ); - createMenu( menuBar() ); -#endif } QVFb::~QVFb() @@ -354,9 +348,7 @@ void QVFb::init( int display_id, int pw, int ph, int d, int r, const QString& sk scroller->setWidget(view); view->setContentsMargins( 0, 0, 0, 0 ); setCentralWidget(scroller); -#if QT_VERSION >= 0x030000 ph += 2; // avoid scrollbar -#endif scroller->show(); // delete defaultbuttons.conf if it was left behind... unlink(QFileInfo(QString("/tmp/qtembedded-%1/defaultbuttons.conf").arg(view->displayId())).absoluteFilePath().toLatin1().constData()); |