diff options
Diffstat (limited to 'plugins/SpellChecker/src/utils.cpp')
-rw-r--r-- | plugins/SpellChecker/src/utils.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/SpellChecker/src/utils.cpp b/plugins/SpellChecker/src/utils.cpp index e1804a25f7..808f16a623 100644 --- a/plugins/SpellChecker/src/utils.cpp +++ b/plugins/SpellChecker/src/utils.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commons.h"
+#include "stdafx.h"
typedef void(*FoundWrongWordCallback)(TCHAR *word, CHARRANGE pos, void *param);
@@ -95,11 +95,6 @@ void SetNoUnderline(Dialog *dlg) dlg->re->Start();
}
-inline BOOL IsNumber(TCHAR c)
-{
- return c >= _T('0') && c <= _T('9');
-}
-
inline BOOL IsURL(TCHAR c)
{
return (c >= _T('a') && c <= _T('z'))
|