From 78cd13f15c6057e18b6f095841a90bb438dd6fd2 Mon Sep 17 00:00:00 2001 From: zecke Date: Sun, 27 Jun 2004 19:36:48 +0000 Subject: Safe eilers some time for weak symbols on MacOS X --- (limited to 'library/qpeapplication.cpp') diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 4bc0c5f..b686e2e 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -1313,7 +1313,13 @@ void QPEApplication::reset() { } -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 */ -- cgit v0.9.0.2