summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-02 12:19:16 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-02 16:05:18 -0600
commit9705fbc1119da91e73c00a2ec848565929eeb483 (patch)
tree8b6525f7acd64f3ed505c638d7f7884ed663479c /include/editeng
parent1f8bdeeebd75b6ed1b67642e98c133ed84f265ee (diff)
Fix editeng missing spellchecking redline on load
Change-Id: I16bfbff85978702c93932d723180a7f9166bd39e
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/misspellrange.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/editeng/misspellrange.hxx b/include/editeng/misspellrange.hxx
index 2279f0f4020c..ccb2c246b778 100644
--- a/include/editeng/misspellrange.hxx
+++ b/include/editeng/misspellrange.hxx
@@ -18,11 +18,11 @@ namespace editeng {
struct EDITENG_DLLPUBLIC MisspellRange
{
- sal_Int32 mnStart;
- sal_Int32 mnEnd;
+ size_t mnStart;
+ size_t mnEnd;
MisspellRange();
- MisspellRange(sal_Int32 nStart, sal_Int32 nEnd);
+ MisspellRange(size_t nStart, size_t nEnd);
};
struct EDITENG_DLLPUBLIC MisspellRanges