From fabfe5b33d2c023587903b82f868f86153215898 Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Wed, 27 Sep 2023 23:06:44 -0400 Subject: [PATCH] Fix GetTextVarsTicker and GetNetclassesTicker return types --- include/project.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/project.h b/include/project.h index 1746675c5f..8425e266f7 100644 --- a/include/project.h +++ b/include/project.h @@ -91,10 +91,10 @@ public: */ virtual void ApplyTextVars( const std::map& 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++; } /**