]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dc.cpp
More Motif additions: mdi and sashtest samples now just about work!
[wxWidgets.git] / src / motif / dc.cpp
index dc5c4983bdc5327f796b655b583503cb00e5d625..ba10348f3de1324b0d7d69546773a1c35ec09744 100644 (file)
@@ -38,7 +38,6 @@ wxDC::wxDC(void)
 {
   m_ok = FALSE;
   m_optimize = FALSE;
-  m_autoSetting = FALSE;
   m_colour = TRUE;
   m_clipping = FALSE;
   
@@ -81,6 +80,8 @@ wxDC::wxDC(void)
   m_font = *wxNORMAL_FONT;
   m_brush = *wxTRANSPARENT_BRUSH;
   m_backgroundBrush = *wxWHITE_BRUSH;
+
+  m_isInteractive = FALSE;
   
 //  m_palette = wxAPP_COLOURMAP;
 };
@@ -146,11 +147,6 @@ void wxDC::DrawSpline( long x1, long y1, long x2, long y2, long x3, long y3 )
   };
 };
 
-void wxDC::DrawSpline( wxList *points )
-{
-  DrawOpenSpline( points );
-};
-
 void wxDC::DrawSpline( int n, wxPoint points[] )
 {
   wxList list;