From: Maxim Mamontov Date: Sat, 18 Dec 2010 14:08:41 +0000 (+0200) Subject: Метод GetStatus класу STG_STOPPER зроблено константним X-Git-Tag: 2.407-rc3~264 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/818d51d18f8960f2e63ffcdd91481fca0118d17c Метод GetStatus класу STG_STOPPER зроблено константним --- diff --git a/projects/stargazer/main.cpp b/projects/stargazer/main.cpp index 26eba647..7a225ce5 100644 --- a/projects/stargazer/main.cpp +++ b/projects/stargazer/main.cpp @@ -93,7 +93,7 @@ class STG_STOPPER { public: STG_STOPPER() { nonstop = true; } - bool GetStatus() { return nonstop; }; + bool GetStatus() const { return nonstop; }; #ifdef NO_DAEMON void Stop(const char * __file__, int __line__) #else