kphillisjr / fog

Automatically exported from code.google.com/p/fog
0 stars 0 forks source link

OSX build fails because of two _FOG_NO_COPY() uses #44

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It seems like those two have been forgotten. The patch is quite straightforward:

Index: Fog/Src/Fog/Core/OS/MacScopedAutoReleasePool.h
===================================================================
--- Fog/Src/Fog/Core/OS/MacScopedAutoReleasePool.h  (revision 975)
+++ Fog/Src/Fog/Core/OS/MacScopedAutoReleasePool.h  (working copy)
@@ -42,7 +42,7 @@
   NSAutoreleasePool* _pool;

 private:
-  _FOG_NO_COPY(MacScopedAutoReleasePool)
+  FOG_NO_COPY(MacScopedAutoReleasePool)
 };

 } // Fog namespace
Index: Fog/Src/Fog/UI/Engine/MacUIEngineWindow.h
===================================================================
--- Fog/Src/Fog/UI/Engine/MacUIEngineWindow.h   (revision 975)
+++ Fog/Src/Fog/UI/Engine/MacUIEngineWindow.h   (working copy)
@@ -125,7 +125,7 @@
   Image _bufferImage;

 private:
-  _FOG_NO_COPY(MacUIEngineWindowImpl)
+  FOG_NO_COPY(MacUIEngineWindowImpl)
 };

 //! @}

Original issue reported on code.google.com by gsse...@gmail.com on 7 Mar 2012 at 1:05

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r976.

Original comment by kobalicek.petr on 7 Mar 2012 at 7:38