5f044fccc4
Update to current upstream version 3.2.2. OBS-URL: https://build.opensuse.org/request/show/286512 OBS-URL: https://build.opensuse.org/package/show/games/MyGUI?expand=0&rev=12
19 lines
549 B
Diff
19 lines
549 B
Diff
diff -Naur MyGUI_3.2.2.orig/MyGUIEngine/include/MyGUI_Singleton.h MyGUI_3.2.2/MyGUIEngine/include/MyGUI_Singleton.h
|
|
--- MyGUI_3.2.2.orig/MyGUIEngine/include/MyGUI_Singleton.h
|
|
+++ MyGUI_3.2.2/MyGUIEngine/include/MyGUI_Singleton.h
|
|
@@ -52,8 +52,14 @@
|
|
}
|
|
|
|
private:
|
|
+#if MYGUI_COMPILER == MYGUI_COMPILER_MSVC || MYGUI_PLATFORM == MYGUI_PLATFORM_APPLE
|
|
static T* msInstance;
|
|
static const char* mClassTypeName;
|
|
+#else
|
|
+ static MYGUI_EXPORT T* msInstance;
|
|
+
|
|
+ static MYGUI_EXPORT const char* mClassTypeName;
|
|
+#endif
|
|
};
|
|
|
|
} // namespace MyGUI
|