]> git.saurik.com Git - wxWidgets.git/commitdiff
Wrap module in #if wxUSE_GRAPHICS_CONTEXT
authorRobin Dunn <robin@alldunn.com>
Tue, 3 Oct 2006 21:56:07 +0000 (21:56 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 3 Oct 2006 21:56:07 +0000 (21:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/graphicc.cpp
src/msw/graphics.cpp

index d901678cd5bf2265ae1587bad74ae9fe915d2066..d5da4a5a7b4dd132efcb45caaeb7eaaa33ae86ef 100755 (executable)
@@ -37,6 +37,8 @@
 
 #include "wx/graphics.h"
 
 
 #include "wx/graphics.h"
 
+#if wxUSE_GRAPHICS_CONTEXT
+
 #include <vector>
 
 using namespace std;
 #include <vector>
 
 using namespace std;
@@ -865,4 +867,6 @@ void wxCairoContext::SetFont( const wxFont &font )
 wxGraphicsContext* wxGraphicsContext::Create( const wxWindowDC& dc )
 {
     return new wxCairoContext(dc);
 wxGraphicsContext* wxGraphicsContext::Create( const wxWindowDC& dc )
 {
     return new wxCairoContext(dc);
-}
\ No newline at end of file
+}
+
+#endif  // wxUSE_GRAPHICS_CONTEXT
index e3a43c31d7c1d716b2f8723d1c2ef757c7ce17fc..de74aa9ce972ac03755dd5adb1a98236c505920d 100644 (file)
@@ -38,6 +38,8 @@
 
 #include "wx/graphics.h"
 
 
 #include "wx/graphics.h"
 
+#if wxUSE_GRAPHICS_CONTEXT
+
 #include <vector>
 
 using namespace std;
 #include <vector>
 
 using namespace std;
@@ -945,3 +947,6 @@ wxGraphicsContext* wxGraphicsContext::Create( const wxWindowDC& dc)
 {
     return new wxGDIPlusContext( (HDC) dc.GetHDC() );
 }
 {
     return new wxGDIPlusContext( (HDC) dc.GetHDC() );
 }
+
+
+#endif  // wxUSE_GRAPHICS_CONTEXT