]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/srchctlg.cpp
enable wxFontMapper in wxDFB port
[wxWidgets.git] / src / generic / srchctlg.cpp
index b40557a72458fcbb1aed01a1e99be63a7a8ebfbb..75f939189239593dfd3f4f5be92026e6eff2a59e 100644 (file)
@@ -534,7 +534,11 @@ void wxSearchCtrl::LayoutControls(int x, int y, int width, int height)
 
 wxString wxSearchCtrl::GetValue() const
 {
-    return m_text->GetValue();
+    wxString value = m_text->GetValue();
+    if (value == m_text->GetDescriptiveText())
+        return wxEmptyString;
+    else
+        return value;
 }
 void wxSearchCtrl::SetValue(const wxString& value)
 {