summaryrefslogtreecommitdiff
path: root/framework/source/fwe/helper/undomanagerhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/fwe/helper/undomanagerhelper.cxx')
-rwxr-xr-xframework/source/fwe/helper/undomanagerhelper.cxx6
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;
}
//==================================================================================================================