]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/control.cpp
Minor corrections.
[wxWidgets.git] / src / motif / control.cpp
index 1dc7e344c54a1c0ae1ceab45959b157b2a50708a..af57174fe6e3a7d404ee4107ce91ae7a564e8d71 100644 (file)
@@ -64,6 +64,25 @@ bool wxControl::Create( wxWindow *parent,
     return ret;
 }
 
+bool wxControl::CreateControl(wxWindow *parent,
+                              wxWindowID id,
+                              const wxPoint& pos,
+                              const wxSize& size,
+                              long style,
+                              const wxValidator& validator,
+                              const wxString& name)
+{
+    if( !wxControlBase::CreateControl( parent, id, pos, size, style,
+                                       validator, name ) )
+        return FALSE;
+
+    m_backgroundColour = parent->GetBackgroundColour();
+    m_foregroundColour = parent->GetForegroundColour();
+    m_font = parent->GetFont();
+
+    return TRUE;
+}
+
 void wxControl::SetLabel(const wxString& label)
 {
     Widget widget = (Widget) GetLabelWidget() ;