diff options
Diffstat (limited to 'sd/inc/undo')
-rwxr-xr-x[-rw-r--r--] | sd/inc/undo/undomanager.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/inc/undo/undomanager.hxx b/sd/inc/undo/undomanager.hxx index b2e40c1e7442..dcb6de7bf458 100644..100755 --- a/sd/inc/undo/undomanager.hxx +++ b/sd/inc/undo/undomanager.hxx @@ -37,18 +37,18 @@ namespace sd class UndoManager : public SfxUndoManager { public: - UndoManager( USHORT nMaxUndoActionCount = 20 ); + UndoManager( sal_uInt16 nMaxUndoActionCount = 20 ); - virtual void EnterListAction(const UniString &rComment, const UniString& rRepeatComment, USHORT nId=0); + virtual void EnterListAction(const UniString &rComment, const UniString& rRepeatComment, sal_uInt16 nId=0); virtual void LeaveListAction(); - virtual void AddUndoAction( SfxUndoAction *pAction, BOOL bTryMerg=FALSE ); + virtual void AddUndoAction( SfxUndoAction *pAction, sal_Bool bTryMerg=sal_False ); bool isInListAction() const { return mnListLevel != 0; } bool isInUndo() const { return maIsInUndoLock.isLocked(); } - virtual BOOL Undo( USHORT nCount=1 ); - virtual BOOL Redo( USHORT nCount=1 ); + virtual sal_Bool Undo( sal_uInt16 nCount=1 ); + virtual sal_Bool Redo( sal_uInt16 nCount=1 ); /** Set or reset the undo manager linked with the called undo manager. */ |