diff options
Diffstat (limited to 'plugins/Clist_ng/SRC/cluiservices.cpp')
-rw-r--r-- | plugins/Clist_ng/SRC/cluiservices.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_ng/SRC/cluiservices.cpp b/plugins/Clist_ng/SRC/cluiservices.cpp index 088b0db00e..8f12e35e7e 100644 --- a/plugins/Clist_ng/SRC/cluiservices.cpp +++ b/plugins/Clist_ng/SRC/cluiservices.cpp @@ -149,7 +149,7 @@ void CluiProtocolStatusChanged( int parStatus, const char* szProto ) lstrcpyn( szName, pa->tszAccountName, _countof(szName));
szName[ _countof(szName)-1 ] = 0;
if (( showOpts & 4 ) && lstrlen(szName) < sizeof(szName)-1 )
- lstrcat( szName, _T(" "));
+ lstrcat( szName, L" ");
GetTextExtentPoint32( hdc, szName, lstrlen(szName), &textSize );
x += textSize.cx + GetSystemMetrics(SM_CXBORDER) * 4; // The SB panel doesnt allocate enough room
}
|