projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
make msg boxes without parent owned by top level app window
[wxWidgets.git]
/
src
/
generic
/
statline.cpp
diff --git
a/src/generic/statline.cpp
b/src/generic/statline.cpp
index f6872ff56a8fdec9607160401a94da4dc0e96e3e..964385982f45ed34a142b25c3e45820f73fedd39 100644
(file)
--- a/
src/generic/statline.cpp
+++ b/
src/generic/statline.cpp
@@
-55,7
+55,13
@@
bool wxStaticLine::Create( wxWindow *parent,
wxSize sizeReal = AdjustSize(size);
wxSize sizeReal = AdjustSize(size);
- m_statbox = new wxStaticBox(parent, id,
_
T(""), pos, sizeReal, style, name);
+ m_statbox = new wxStaticBox(parent, id,
wx
T(""), pos, sizeReal, style, name);
return TRUE;
}
return TRUE;
}
+
+
+WXWidget wxStaticLine::GetMainWidget() const
+{
+ return m_statbox->GetMainWidget();
+}