diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-02-07 16:45:40 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-02-07 16:45:40 +0100 |
commit | bb964e573e1ce590e67b58cb8131788bcee2872c (patch) | |
tree | 3ad7cea7754dcc96cb3d75e4f38d3a881099335f /framework | |
parent | 377f24352ff38b1894719d1c6f6ec0cc1e5cfa3d (diff) |
removetooltypes01: #i112600# Fix build problem after rebase in framework
Diffstat (limited to 'framework')
-rwxr-xr-x | framework/source/fwe/helper/undomanagerhelper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/fwe/helper/undomanagerhelper.cxx b/framework/source/fwe/helper/undomanagerhelper.cxx index a37451339234..891504adbe71 100755 --- a/framework/source/fwe/helper/undomanagerhelper.cxx +++ b/framework/source/fwe/helper/undomanagerhelper.cxx @@ -91,7 +91,7 @@ namespace framework virtual String GetComment() const; virtual void Undo(); virtual void Redo(); - virtual BOOL CanRepeat(SfxRepeatTarget&) const; + virtual sal_Bool CanRepeat(SfxRepeatTarget&) const; private: const Reference< XUndoAction > m_xUndoAction; @@ -148,9 +148,9 @@ namespace framework } //------------------------------------------------------------------------------------------------------------------ - BOOL UndoActionWrapper::CanRepeat(SfxRepeatTarget&) const + sal_Bool UndoActionWrapper::CanRepeat(SfxRepeatTarget&) const { - return FALSE; + return sal_False; } //================================================================================================================== |