summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/hdr/modern_tstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_modern/hdr/modern_tstring.h')
-rw-r--r--plugins/Clist_modern/hdr/modern_tstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/hdr/modern_tstring.h b/plugins/Clist_modern/hdr/modern_tstring.h
index 5bd558c54d..17fc9cf50c 100644
--- a/plugins/Clist_modern/hdr/modern_tstring.h
+++ b/plugins/Clist_modern/hdr/modern_tstring.h
@@ -21,7 +21,7 @@ public:
mbstring( const wstring& tStr ) { *this = tStr.c_str(); }
- mbstring& operator=( const wstring& tStr ) { this->operator =( tStr.c_str() ); return *this; }
+ mbstring& operator=( const wstring& tStr ) { this->operator =( tStr.c_str()); return *this; }
mbstring( const wchar_t * wChar );
mbstring& operator=( const astring& aStr );
@@ -46,7 +46,7 @@ public:
tstring& operator=( const astring& aStr );
tstring& operator=( const mbstring& uStr );
operator astring();
- operator mbstring() { return mbstring( this->c_str() ); }
+ operator mbstring() { return mbstring( this->c_str()); }
};
#else