mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[ATL] Add missing CString += overload (char). Patch by Alexander Shaposhnikov. CORE-13503
svn path=/trunk/; revision=75237
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user