Make wxTextEntry::DoSetValue() reusable under wxQt

This is a preparation for wxComboBox and wxBitmapComboBox to reuse the code
from the base class by just forwarding to wxTextEntry.
This commit is contained in:
ali kettab 2023-10-02 21:21:36 +01:00
parent 14ac76ed36
commit 7ec7fe6dea
2 changed files with 14 additions and 1 deletions

View file

@ -41,6 +41,9 @@ protected:
virtual void DoSetValue(const wxString& value, int flags=0) override;
virtual wxWindow *GetEditableWindow() override;
// Block/unblock the corresponding Qt signal.
virtual void EnableTextChangedEvents(bool enable) override;
};
#endif // _WX_QT_TEXTENTRY_H_