Fix GetTextVarsTicker and GetNetclassesTicker return types
This commit is contained in:
parent
8c6899b0d3
commit
fabfe5b33d
|
@ -91,10 +91,10 @@ public:
|
|||
*/
|
||||
virtual void ApplyTextVars( const std::map<wxString, wxString>& aVarsMap );
|
||||
|
||||
bool GetTextVarsTicker() const { return m_textVarsTicker; }
|
||||
int GetTextVarsTicker() const { return m_textVarsTicker; }
|
||||
void IncrementTextVarsTicker() { m_textVarsTicker++; }
|
||||
|
||||
bool GetNetclassesTicker() const { return m_netclassesTicker; }
|
||||
int GetNetclassesTicker() const { return m_netclassesTicker; }
|
||||
void IncrementNetclassesTicker() { m_netclassesTicker++; }
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue