diff options
author | Eugene Sandulenko | 2012-04-28 01:00:14 +0300 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-02 12:42:08 +0200 |
commit | 28c78b956dac6ee59d066f7ff2499569fe9877c7 (patch) | |
tree | 07e37e79e5610d3f21d22a8243083b78e09f8542 /engines/wintermute/BBase.h | |
parent | 84fd9d0daca1846829b077aa18a7634df5e5ef9e (diff) | |
download | scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.tar.gz scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.tar.bz2 scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.zip |
WINTERMUTE: Mass rename m_FooBar -> _fooBar
Diffstat (limited to 'engines/wintermute/BBase.h')
-rw-r--r-- | engines/wintermute/BBase.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/wintermute/BBase.h b/engines/wintermute/BBase.h index c72d687eca..423c9fef6a 100644 --- a/engines/wintermute/BBase.h +++ b/engines/wintermute/BBase.h @@ -44,7 +44,7 @@ class CBDynBuffer; class CBBase {
public:
- bool m_Persistable;
+ bool _persistable;
HRESULT SetEditorProp(const char *PropName, const char *PropValue);
const char *GetEditorProp(const char *PropName, const char *InitVal = NULL);
CBBase(TDynamicConstructor, TDynamicConstructor) {};
@@ -55,10 +55,10 @@ public: CBBase(CBGame *GameOwner);
virtual ~CBBase();
- Common::HashMap<Common::String, Common::String> m_EditorProps;
- Common::HashMap<Common::String, Common::String>::iterator m_EditorPropsIter;
-/* std::map<std::string, std::string> m_EditorProps;
- std::map<std::string, std::string>::iterator m_EditorPropsIter;*/
+ Common::HashMap<Common::String, Common::String> _editorProps;
+ Common::HashMap<Common::String, Common::String>::iterator _editorPropsIter;
+/* std::map<std::string, std::string> _editorProps;
+ std::map<std::string, std::string>::iterator _editorPropsIter;*/
};
} // end of namespace WinterMute
|