From c767b6969da6d8f81b837512295a150a8aa033fc Mon Sep 17 00:00:00 2001 From: twanvl Date: Thu, 15 Jan 2009 22:59:40 +0000 Subject: [PATCH] fix for non Unicode build; why won't it die already? git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1364 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/util/spell_checker.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/spell_checker.hpp b/src/util/spell_checker.hpp index 3802d069..a07117b1 100644 --- a/src/util/spell_checker.hpp +++ b/src/util/spell_checker.hpp @@ -17,7 +17,7 @@ DECLARE_POINTER_TYPE(SpellChecker); #ifdef UNICODE typedef wxCharBuffer CharBuffer; #else - typedef char* CharBuffer; + typedef const char* CharBuffer; #endif // ----------------------------------------------------------------------------- : Spell checker