summaryrefslogtreecommitdiff
path: root/starmath/inc/types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/inc/types.hxx')
-rw-r--r--starmath/inc/types.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/inc/types.hxx b/starmath/inc/types.hxx
index b15fd46cee5b..7ab5b07cd849 100644
--- a/starmath/inc/types.hxx
+++ b/starmath/inc/types.hxx
@@ -29,10 +29,10 @@ enum SmPrintSize { PRINT_SIZE_NORMAL, PRINT_SIZE_SCALED, PRINT_SIZE_ZOOMED };
-inline sal_Bool IsInPrivateUseArea( sal_Unicode cChar ) { return 0xE000 <= cChar && cChar <= 0xF8FF; }
+inline bool IsInPrivateUseArea( sal_Unicode cChar ) { return 0xE000 <= cChar && cChar <= 0xF8FF; }
// Greek char range as seen in svx/.../charmap.cxx RID_SUBSETSTR_BASIC_GREEK
-inline sal_Bool IsGreekChar( sal_Unicode cChar ) { return 0x0370 <= cChar && cChar <= 0x03FF; }
+inline bool IsGreekChar( sal_Unicode cChar ) { return 0x0370 <= cChar && cChar <= 0x03FF; }
sal_Unicode ConvertMathToMathML( sal_Unicode cChar );