added wxWindow::IsFrozen() (only existed in wxMSW and wxDFB before)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41207 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-09-13 23:45:31 +00:00
parent 49e74855af
commit d4a1433fcc
4 changed files with 17 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ public:
virtual void Clear();
virtual void Freeze();
virtual void Thaw();
bool IsFrozen() const { return m_frozenness > 0; }
virtual bool IsFrozen() const { return m_frozenness > 0; }
virtual bool SetCursor(const wxCursor &cursor);
virtual bool SetFont(const wxFont &font) { m_font = font; return true; }