diff options
author | Max Horn | 2010-11-16 08:21:53 +0000 |
---|---|---|
committer | Max Horn | 2010-11-16 08:21:53 +0000 |
commit | 5af8a76b489c315f4389f888489030bdcff52ae3 (patch) | |
tree | f03b4a01bd6a9f29ff57a7557975209ef08da83b | |
parent | 3450f476670eab0afa9e8eaf738128f136b95d63 (diff) | |
download | scummvm-rg350-5af8a76b489c315f4389f888489030bdcff52ae3.tar.gz scummvm-rg350-5af8a76b489c315f4389f888489030bdcff52ae3.tar.bz2 scummvm-rg350-5af8a76b489c315f4389f888489030bdcff52ae3.zip |
COMMON: Make Common::Singleton::_singleton protected instead of public
svn-id: r54257
-rw-r--r-- | common/singleton.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/singleton.h b/common/singleton.h index e17e401f8b..4ef871b173 100644 --- a/common/singleton.h +++ b/common/singleton.h @@ -87,7 +87,8 @@ protected: #endif typedef T SingletonBaseType; - + +protected: static T *_singleton; }; |