projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Correctly determine best wxPropertyGrid width.
[wxWidgets.git]
/
src
/
generic
/
srchctlg.cpp
diff --git
a/src/generic/srchctlg.cpp
b/src/generic/srchctlg.cpp
index e520c7dd24099f8223ff22c634e53a3ebd5bccf0..494ae1537f76d125fe5c95537a517ea974be1949 100644
(file)
--- a/
src/generic/srchctlg.cpp
+++ b/
src/generic/srchctlg.cpp
@@
-577,7
+577,7
@@
void wxSearchCtrl::LayoutControls(int x, int y, int width, int height)
// accessors
// ---------
// accessors
// ---------
-wxString wxSearchCtrl::GetValue() const
+wxString wxSearchCtrl::
Do
GetValue() const
{
wxString value = m_text->GetValue();
if (value == m_text->GetDescriptiveText())
{
wxString value = m_text->GetValue();
if (value == m_text->GetDescriptiveText())
@@
-585,11
+585,6
@@
wxString wxSearchCtrl::GetValue() const
else
return value;
}
else
return value;
}
-void wxSearchCtrl::SetValue(const wxString& value)
-{
- m_text->SetValue(value);
-}
-
wxString wxSearchCtrl::GetRange(long from, long to) const
{
return m_text->GetRange(from, to);
wxString wxSearchCtrl::GetRange(long from, long to) const
{
return m_text->GetRange(from, to);