summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 4bc0c5f..b686e2e 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -1310,13 +1310,19 @@ void QPEApplication::reset() {
// Redraw everything
applyStyle();
}
-extern bool qt_left_hand_scrollbars __attribute__(( weak ));
+#ifdef Q_OS_MACX
+#define WEAK_SYMBOL __attribute__((weak_import))
+#else
+#define WEAK_SYMBOL __attribute__((weak))
+#endif
+
+extern bool qt_left_hand_scrollbars WEAK_SYMBOL;
/*!
\internal
*/
void QPEApplication::applyStyle()
{
Config config( "qpe" );