diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-25 22:07:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-26 12:28:09 +0100 |
commit | 3b4b4ed3b3fa73265b2f2506985dec6a4e1068f2 (patch) | |
tree | 770d57d3b0b457b125261c3f7c52813a430cfb3e /cui | |
parent | f03aebbd5fd4571d0663a8287dcc6a030b56305a (diff) |
Edit::IsModified should return bool
Change-Id: I0aafdd37c73cd47b9dc68b60a32db35c8c11f455
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/inc/SpellDialog.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/inc/SpellDialog.hxx b/cui/source/inc/SpellDialog.hxx index 550f9c400576..a15973441547 100644 --- a/cui/source/inc/SpellDialog.hxx +++ b/cui/source/inc/SpellDialog.hxx @@ -96,7 +96,7 @@ public: void ResetModified() { GetTextEngine()->SetModified(sal_False); m_bIsUndoEditMode = false;} - sal_Bool IsModified() const { return GetTextEngine()->IsModified(); } + virtual bool IsModified() const SAL_OVERRIDE { return GetTextEngine()->IsModified(); } bool IsUndoEditMode() const { return m_bIsUndoEditMode;} void SetUndoEditMode(bool bSet); |