Author: pschweitzer Date: Sun Sep 1 14:54:33 2013 New Revision: 59941
URL: http://svn.reactos.org/svn/reactos?rev=59941&view=rev Log: [FRAMEDYN] Fix a typo (and so a bug), spotted by MSVC. I don't thank you G++... Attempt to fix build with MSVC
Modified: trunk/reactos/dll/win32/framedyn/chstring.cpp
Modified: trunk/reactos/dll/win32/framedyn/chstring.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/framedyn/chstring... ============================================================================== --- trunk/reactos/dll/win32/framedyn/chstring.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/framedyn/chstring.cpp [iso-8859-1] Sun Sep 1 14:54:33 2013 @@ -771,7 +771,7 @@ */ void CHString::Init() { - m_pchData == afxPchNil; + m_pchData = afxPchNil; }
/* @@ -1336,7 +1336,7 @@ /* * @implemented */ -CHString operator+(WCHAR ch, const CHString& string) throw (CHeap_Exception) +CHString WINAPI operator+(WCHAR ch, const CHString& string) throw (CHeap_Exception) { CHString NewString;
@@ -1349,7 +1349,7 @@ /* * @implemented */ -CHString operator+(const CHString& string, WCHAR ch) throw (CHeap_Exception) +CHString WINAPI operator+(const CHString& string, WCHAR ch) throw (CHeap_Exception) { CHString NewString;
@@ -1362,7 +1362,7 @@ /* * @implemented */ -CHString operator+(const CHString& string, LPCWSTR lpsz) throw (CHeap_Exception) +CHString WINAPI operator+(const CHString& string, LPCWSTR lpsz) throw (CHeap_Exception) { int Len; CHString NewString; @@ -1378,7 +1378,7 @@ /* * @implemented */ -CHString operator+(LPCWSTR lpsz, const CHString& string) throw (CHeap_Exception) +CHString WINAPI operator+(LPCWSTR lpsz, const CHString& string) throw (CHeap_Exception) { int Len; CHString NewString; @@ -1394,7 +1394,7 @@ /* * @implemented */ -CHString operator+(const CHString& string1, const CHString& string2) throw (CHeap_Exception) +CHString WINAPI operator+(const CHString& string1, const CHString& string2) throw (CHeap_Exception) { CHString NewString;