summaryrefslogtreecommitdiff
path: root/library/qpeapplication.cpp
authoreilers <eilers>2004-07-17 17:11:30 (UTC)
committer eilers <eilers>2004-07-17 17:11:30 (UTC)
commit7d8125ae8cfffe5a7292db1cd353633188ff04e6 (patch) (side-by-side diff)
tree5f1436261a19621c3ceec8c5cb65475652ba878e /library/qpeapplication.cpp
parente917f3763a0beb6d540adbfa5f59e478d3baec64 (diff)
downloadopie-7d8125ae8cfffe5a7292db1cd353633188ff04e6.zip
opie-7d8125ae8cfffe5a7292db1cd353633188ff04e6.tar.gz
opie-7d8125ae8cfffe5a7292db1cd353633188ff04e6.tar.bz2
Make it compileable if just qte 2.3.7 is available.
Weak symbols just protect us against unresolved symbols at runtime. But, if it is unresolved at compile time, linking will fail !
Diffstat (limited to 'library/qpeapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index f4a7f74..db8297f 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -1314,7 +1314,7 @@ void QPEApplication::reset() {
applyStyle();
}
-
+#if QT_VERSION > 238
#ifdef Q_OS_MACX
#define WEAK_SYMBOL __attribute__((weak_import))
#else
@@ -1322,6 +1322,10 @@ void QPEApplication::reset() {
#endif
extern bool qt_left_hand_scrollbars WEAK_SYMBOL;
+
+#else
+bool qt_left_hand_scrollbars = false;
+#endif
/*!
\internal
*/