mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:45:46 +00:00
[FRAMEDYN]
Fix a typo (and so a bug), spotted by MSVC. I don't thank you G++... Attempt to fix build with MSVC svn path=/trunk/; revision=59941
This commit is contained in:
parent
f570a3d1ff
commit
ec8b12d5ba
1 changed files with 6 additions and 6 deletions
|
@ -771,7 +771,7 @@ int CHString::GetLength() const
|
|||
*/
|
||||
void CHString::Init()
|
||||
{
|
||||
m_pchData == afxPchNil;
|
||||
m_pchData = afxPchNil;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1336,7 +1336,7 @@ CHString::operator LPWSTR()
|
|||
/*
|
||||
* @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 @@ CHString operator+(WCHAR ch, const CHString& string) throw (CHeap_Exception)
|
|||
/*
|
||||
* @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 @@ CHString operator+(const CHString& string, WCHAR ch) throw (CHeap_Exception)
|
|||
/*
|
||||
* @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 @@ CHString operator+(const CHString& string, LPCWSTR lpsz) throw (CHeap_Exception)
|
|||
/*
|
||||
* @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 @@ CHString operator+(LPCWSTR lpsz, const CHString& string) throw (CHeap_Exception)
|
|||
/*
|
||||
* @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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue