Index: src/plugin/PluginMutex.h |
=================================================================== |
--- a/src/plugin/PluginMutex.h |
+++ b/src/plugin/PluginMutex.h |
@@ -10,11 +10,11 @@ |
HANDLE m_hMutex; |
bool m_isLocked; |
int m_errorSubidBase; |
- CString m_name; |
+ std::wstring mutex_name; |
sergei
2014/07/08 11:58:34
in `m_someVar` "m" means "member", since we are al
Eric
2014/07/08 17:46:37
The "m_" prefix (and the "s_" also) are carryovers
|
public: |
- CPluginMutex(const CString& name, int errorSubidBase); |
+ CPluginMutex(const std::wstring & name, int errorSubidBase); |
~CPluginMutex(); |
bool IsLocked() const; |