Index: src/plugin/PluginClass.cpp |
=================================================================== |
--- a/src/plugin/PluginClass.cpp |
+++ b/src/plugin/PluginClass.cpp |
@@ -1904,17 +1904,17 @@ LRESULT CALLBACK CPluginClass::PaneWindo |
#ifdef _DEBUG |
// Display version |
HFONT hFont = (HFONT)::SendMessage(pClass->m_hStatusBarWnd, WM_GETFONT, 0, 0); |
HGDIOBJ hOldFont = ::SelectObject(hDC,hFont); |
CRect rcText = rcClient; |
rcText.left += offx; |
::SetBkMode(hDC, TRANSPARENT); |
- ::DrawText(hDC, _T(IEPLUGIN_VERSION), -1, &rcText, DT_WORD_ELLIPSIS|DT_LEFT|DT_SINGLELINE|DT_VCENTER); |
+ ::DrawTextW(hDC, IEPLUGIN_VERSION, -1, &rcText, DT_WORD_ELLIPSIS|DT_LEFT|DT_SINGLELINE|DT_VCENTER); |
::SelectObject(hDC, hOldFont); |
#endif // _DEBUG |
} |
// Done! |
EndPaint(hWnd, &ps); |