- Added missing operator+=

svn path=/branches/GSoC_2017/rapps/; revision=75318
This commit is contained in:
Alexander Shaposhnikov 2017-07-11 21:58:31 +00:00
parent 09da413dc8
commit 8f622b4bd0

View file

@ -453,6 +453,12 @@ public:
return *this;
}
CStringT& operator+=(_In_ XCHAR ch)
{
CThisSimpleString::operator+=(ch);
return *this;
}
BOOL LoadString(_In_ UINT nID)
{
return LoadString(_AtlBaseModule.GetResourceInstance(), nID);