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:
parent
c0bfb3d9b7
commit
7432bb6bfb
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user