Index: trunk/src/ui/gfx/gfx_export.h |
=================================================================== |
--- trunk/src/ui/gfx/gfx_export.h (revision 225858) |
+++ trunk/src/ui/gfx/gfx_export.h (working copy) |
@@ -8,14 +8,14 @@ |
#if defined(COMPONENT_BUILD) |
#if defined(WIN32) |
-#if defined(GFX_IMPLEMENTATION) |
+#if defined(UI_IMPLEMENTATION) |
#define GFX_EXPORT __declspec(dllexport) |
#else |
#define GFX_EXPORT __declspec(dllimport) |
-#endif // defined(GFX_IMPLEMENTATION) |
+#endif // defined(UI_IMPLEMENTATION) |
#else // defined(WIN32) |
-#if defined(GFX_IMPLEMENTATION) |
+#if defined(UI_IMPLEMENTATION) |
#define GFX_EXPORT __attribute__((visibility("default"))) |
#else |
#define GFX_EXPORT |