Remove commented out stream operations in wxSearchCtrl

Just remove unused and unnecessary declarations.
This commit is contained in:
Vadim Zeitlin
2018-07-07 00:54:30 +02:00
parent df4d1d456f
commit 6ed3865925
2 changed files with 0 additions and 34 deletions

View File

@@ -883,23 +883,6 @@ void wxSearchCtrl::SetCancelBitmap( const wxBitmap& bitmap )
}
}
#if 0
// override streambuf method
#if wxHAS_TEXT_WINDOW_STREAM
int overflow(int i);
#endif // wxHAS_TEXT_WINDOW_STREAM
// stream-like insertion operators: these are always available, whether we
// were, or not, compiled with streambuf support
wxTextCtrl& operator<<(const wxString& s);
wxTextCtrl& operator<<(int i);
wxTextCtrl& operator<<(long i);
wxTextCtrl& operator<<(float f);
wxTextCtrl& operator<<(double d);
wxTextCtrl& operator<<(const wxChar c);
#endif
// Note that overriding DoSetValue() is currently insufficient because the base
// class ChangeValue() only updates m_hintData of this object (which is null
// anyhow), instead of updating m_text->m_hintData, see #16998.