diff options
Diffstat (limited to 'plugins/Quotes/src/Chart.h')
-rw-r--r-- | plugins/Quotes/src/Chart.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Quotes/src/Chart.h b/plugins/Quotes/src/Chart.h index ba42d6a7b2..3eebd5d11e 100644 --- a/plugins/Quotes/src/Chart.h +++ b/plugins/Quotes/src/Chart.h @@ -90,7 +90,7 @@ public: HFONT hFont = static_cast<HFONT>(::GetStockObject(DEFAULT_GUI_FONT));
HFONT hOldFont = static_cast<HFONT>(::SelectObject(hdc, hFont));
- LPCTSTR pszText = TranslateT("There is no to show");
+ LPCTSTR pszText = TranslateT("There is nothing to show");
int nDrawTextResult = ::DrawText(hdc, pszText, -1, &rc, DT_SINGLELINE | DT_VCENTER | DT_CENTER);
assert(0 != nDrawTextResult);
|