X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a4b8f27709c3dd59a5b447850389ca25f178047..b8505921fcf3328fa86d79828a74fc46d62d438d:/src/generic/statline.cpp

diff --git a/src/generic/statline.cpp b/src/generic/statline.cpp
index f6872ff56a..964385982f 100644
--- a/src/generic/statline.cpp
+++ b/src/generic/statline.cpp
@@ -55,7 +55,13 @@ 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;
 }
+
+
+WXWidget wxStaticLine::GetMainWidget() const
+{
+    return m_statbox->GetMainWidget();
+}