X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4bb6408c2631988fab9925014c6619358bf867de..4d94751752c081c289a1d8f159405487dbbe4e68:/src/motif/dc.cpp

diff --git a/src/motif/dc.cpp b/src/motif/dc.cpp
index dc5c4983bd..ba10348f3d 100644
--- a/src/motif/dc.cpp
+++ b/src/motif/dc.cpp
@@ -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;