mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[ATL]
- Added missing operator+= svn path=/branches/GSoC_2017/rapps/; revision=75318
This commit is contained in:
parent
09da413dc8
commit
8f622b4bd0
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