mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[ATL] Add missing CString += overload (char). Patch by Alexander Shaposhnikov. CORE-13503
svn path=/trunk/; revision=75237
This commit is contained in:
parent
1931f33c9b
commit
2fc232f21e
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue