for each prototype make sure that if the n-th argument has a default value, then all the following arguments have a default value, too

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52807 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-25 12:26:23 +00:00
parent a6052817bb
commit 203ba76a12
3 changed files with 49 additions and 19 deletions

View File

@@ -84,6 +84,9 @@ public:
wxString GetDefaultValue() const
{ return m_strDefaultValue; }
bool HasDefaultValue() const
{ return !m_strDefaultValue.IsEmpty(); }
bool operator==(const wxArgumentType& m) const;
bool operator!=(const wxArgumentType& m) const
{ return !(*this == m); }