]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/statline.cpp
removed carbon printing code
[wxWidgets.git] / src / generic / statline.cpp
index 31bbdec49ed4c37687e7a37d19df5d66f315c546..122af4679991e6941c9b1a71a58af31dcbf771c3 100644 (file)
@@ -20,6 +20,7 @@
     #pragma implementation "statline.h"
 #endif
 
+#if wxUSE_STATLINE
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -55,7 +56,7 @@ bool wxStaticLine::Create( wxWindow *parent,
 
     wxSize sizeReal = AdjustSize(size);
 
-    m_statbox = new wxStaticBox(parent, id, _T(""), pos, sizeReal, style, name);
+    m_statbox = new wxStaticBox(parent, id, wxT(""), pos, sizeReal, style, name);
 
     return TRUE;
 }
@@ -65,3 +66,16 @@ WXWidget wxStaticLine::GetMainWidget() const
 {
     return m_statbox->GetMainWidget();
 }
+
+void wxStaticLine::DoSetSize(int x, int y, int width, int height, int sizeFlags)
+{
+    m_statbox->SetSize(x, y, width, height, sizeFlags);
+}
+
+void wxStaticLine::DoMoveWindow(int x, int y, int width, int height)
+{
+    m_statbox->SetSize(x, y, width, height);
+}
+
+#endif
+  // wxUSE_STATLINE