[ATL] Add missing CString += overload (char). Patch by Alexander Shaposhnikov. CORE-13503

svn path=/trunk/; revision=75237
This commit is contained in:
Mark Jansen 2017-06-29 17:09:49 +00:00
parent 1931f33c9b
commit 2fc232f21e

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);