added the process-only option
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52774 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -165,7 +165,10 @@ public: // setters
|
||||
void SetVirtual(bool c = true)
|
||||
{ m_bVirtual=c; }
|
||||
void SetPureVirtual(bool c = true)
|
||||
{ m_bPureVirtual=c; }
|
||||
{
|
||||
m_bPureVirtual=c;
|
||||
if (c) m_bVirtual=c; // pure virtual => virtual
|
||||
}
|
||||
void SetDeprecated(bool c = true)
|
||||
{ m_bDeprecated=c; }
|
||||
void SetLocation(int lineNumber)
|
||||
|
||||
Reference in New Issue
Block a user