Line-up interfaces to use size_t for GetCount()s.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-03-12 13:15:53 +00:00
parent 78fc4e5509
commit 3b38e2a022
4 changed files with 36 additions and 38 deletions

View File

@@ -1492,7 +1492,7 @@ public:
virtual void ClearStyleStack();
/// Get the size of the style stack, for example to check correct nesting
virtual int GetStyleStackSize() const { return m_attributeStack.GetCount(); }
virtual size_t GetStyleStackSize() const { return m_attributeStack.GetCount(); }
/// Begin using bold
bool BeginBold();