Fix GetTextVarsTicker and GetNetclassesTicker return types

This commit is contained in:
Marek Roszko 2023-09-27 23:06:44 -04:00
parent 8c6899b0d3
commit fabfe5b33d
1 changed files with 2 additions and 2 deletions

View File

@ -91,10 +91,10 @@ public:
*/ */
virtual void ApplyTextVars( const std::map<wxString, wxString>& aVarsMap ); 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++; } void IncrementTextVarsTicker() { m_textVarsTicker++; }
bool GetNetclassesTicker() const { return m_netclassesTicker; } int GetNetclassesTicker() const { return m_netclassesTicker; }
void IncrementNetclassesTicker() { m_netclassesTicker++; } void IncrementNetclassesTicker() { m_netclassesTicker++; }
/** /**