Load Mac specific resources when used in a static build

When Qt was built statically then the Mac specific resources were not
being loaded which meant some style specific images were not used.

Task-number: QTBUG-25391
Change-Id: If311148df19a87b6c8104553b662e3bf157f5717
Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com>
This commit is contained in:
Andy Shaw 2012-08-27 14:03:47 +02:00 committed by The Qt Project
parent c0bfb3d9b7
commit 7432bb6bfb

View File

@ -59,6 +59,12 @@
#include <QtPlatformSupport/private/qcoretextfontdatabase_p.h>
static void initResources()
{
Q_INIT_RESOURCE_EXTERN(qcocoaresources)
Q_INIT_RESOURCE(qcocoaresources);
}
QT_BEGIN_NAMESPACE
QCocoaScreen::QCocoaScreen(int screenIndex)
@ -159,6 +165,7 @@ QCocoaIntegration::QCocoaIntegration()
, mNativeInterface(new QCocoaNativeInterface)
, mServices(new QCocoaServices)
{
initResources();
QCocoaAutoReleasePool pool;
qApp->setAttribute(Qt::AA_DontUseNativeMenuBar, false);