diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-13 16:56:37 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-13 16:56:37 +0200 |
commit | 39cf857db9b926c47f545cba1d7113267260c40e (patch) | |
tree | 8aa3a7fbfa8079e7837650c8c3f0e9032ba87df4 /src/externui.h | |
parent | e83474f2ebbae84394f0b86cfea977d3024bd33f (diff) |
Internationalization -- initial step, make _ return a std::string to prevent memory leaks
Diffstat (limited to 'src/externui.h')
-rw-r--r-- | src/externui.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/externui.h b/src/externui.h index e58ccc2242..3243164c10 100644 --- a/src/externui.h +++ b/src/externui.h @@ -41,5 +41,6 @@ extern bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, extern void CalledSetStatusBar(const std::string& strText, int nField); extern void UIThreadCall(boost::function0<void> fn); extern void MainFrameRepaint(); +extern std::string _(const char* psz); #endif |