summaryrefslogtreecommitdiff
path: root/rbutil/rbutil.h
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2007-03-15 15:27:56 +0000
committerDominik Wenger <domonoky@googlemail.com>2007-03-15 15:27:56 +0000
commit29fc0effd79afce28d740ea6330aad3afa3aa94d (patch)
tree4a5f4b67ded831286f7ef64f6b28342a0b8f94c8 /rbutil/rbutil.h
parenta5f5662b4ebdf798a10b817e55a17184eb7dfe26 (diff)
forgot to add the new Images, also try to fix unicode problems
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12783 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutil.h')
-rw-r--r--rbutil/rbutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rbutil/rbutil.h b/rbutil/rbutil.h
index 8d95c1c2d5..193ce45be8 100644
--- a/rbutil/rbutil.h
+++ b/rbutil/rbutil.h
@@ -137,10 +137,10 @@ bool rm_rf(wxString file);
#define ERR_DIALOG(msg, title) \
- wxLogError("%s: %s", ((wxString) title).c_str(), ((wxString) msg).c_str())
+ wxLogError(wxT("%s: %s"), ((wxString) title).c_str(), ((wxString) msg).c_str())
#define WARN_DIALOG(msg, title) \
- wxLogWarning("%s: %s", ((wxString) title).c_str(), ((wxString) msg).c_str())
+ wxLogWarning(wxT("%s: %s"), ((wxString) title).c_str(), ((wxString) msg).c_str())
#define MESG_DIALOG(msg) \
wxLogMessage(msg)