fixed totally wrong change in r49070

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-10-07 10:45:34 +00:00
parent 8366ab05cd
commit bdb7278a27

View File

@@ -139,17 +139,17 @@ public:
// needs to forward to them // needs to forward to them
void DoSetValue(const wxString& value, int flags) void DoSetValue(const wxString& value, int flags)
{ {
m_text->DoSetValue(value, flags); wxTextCtrl::DoSetValue(value, flags);
} }
bool DoLoadFile(const wxString& file, int fileType) bool DoLoadFile(const wxString& file, int fileType)
{ {
return m_text->DoLoadFile(file, fileType); return wxTextCtrl::DoLoadFile(file, fileType);
} }
bool DoSaveFile(const wxString& file, int fileType) bool DoSaveFile(const wxString& file, int fileType)
{ {
return m_text->DoSaveFile(file, fileType); return wxTextCtrl::DoSaveFile(file, fileType);
} }
protected: protected:
@@ -914,6 +914,21 @@ wxTextCtrl& operator<<(double d);
wxTextCtrl& operator<<(const wxChar c); wxTextCtrl& operator<<(const wxChar c);
#endif #endif
void wxSearchCtrl::DoSetValue(const wxString& value, int flags)
{
m_text->DoSetValue(value, flags);
}
bool wxSearchCtrl::DoLoadFile(const wxString& file, int fileType)
{
return m_text->DoLoadFile(file, fileType);
}
bool wxSearchCtrl::DoSaveFile(const wxString& file, int fileType)
{
return m_text->DoSaveFile(file, fileType);
}
// do the window-specific processing after processing the update event // do the window-specific processing after processing the update event
void wxSearchCtrl::DoUpdateWindowUI(wxUpdateUIEvent& event) void wxSearchCtrl::DoUpdateWindowUI(wxUpdateUIEvent& event)
{ {