diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-05 16:25:03 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-07 20:00:16 +0000 |
commit | 009851223b5ced4ed2662af2e2ae81c0f9200e45 (patch) | |
tree | a8ab339589ea23b98513d394eabc4f135e69ccae /include/editeng | |
parent | 35b42a9d1282a92dbc9a7fbc51d279812070688c (diff) |
module svl: all String and some bool and related clean-up
Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed
Reviewed-on: https://gerrit.libreoffice.org/4733
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/editund2.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/editeng/editund2.hxx b/include/editeng/editund2.hxx index b8106288f97e..3a3578b06cf3 100644 --- a/include/editeng/editund2.hxx +++ b/include/editeng/editund2.hxx @@ -36,8 +36,8 @@ class EDITENG_DLLPUBLIC EditUndoManager : public SfxUndoManager public: EditUndoManager(sal_uInt16 nMaxUndoActionCount = 20); - virtual sal_Bool Undo(); - virtual sal_Bool Redo(); + virtual bool Undo(); + virtual bool Redo(); }; // ----------------------------------------------------------------------- @@ -58,7 +58,7 @@ public: virtual void Undo() = 0; virtual void Redo() = 0; - virtual sal_Bool CanRepeat(SfxRepeatTarget&) const; + virtual bool CanRepeat(SfxRepeatTarget&) const; virtual OUString GetComment() const; virtual sal_uInt16 GetId() const; }; |