diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-01-17 11:41:00 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-01-17 11:41:00 +0100 |
commit | 3d6bed44c8ca414f60c03223482b9f7b94d56c14 (patch) | |
tree | 9b015da930eaf9856b5f05707245327185fff884 /sd/source/ui/dlg/brkdlg.cxx | |
parent | a4babcc4a08648e99d988fca640ab555da10048c (diff) |
removetooltypes01: #i112600# Remove tools types from sd
Diffstat (limited to 'sd/source/ui/dlg/brkdlg.cxx')
-rwxr-xr-x[-rw-r--r--] | sd/source/ui/dlg/brkdlg.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/dlg/brkdlg.cxx b/sd/source/ui/dlg/brkdlg.cxx index f2c69231d79e..fc95bfc2e285 100644..100755 --- a/sd/source/ui/dlg/brkdlg.cxx +++ b/sd/source/ui/dlg/brkdlg.cxx @@ -60,8 +60,8 @@ BreakDlg::BreakDlg( ::Window* pWindow, DrawView* _pDrView, DrawDocShell* pShell, - ULONG nSumActionCount, - ULONG nObjCount ) + sal_uLong nSumActionCount, + sal_uLong nObjCount ) : SfxModalDialog ( pWindow, SdResId( DLG_BREAK ) ), aFtObjInfo ( this, SdResId( FT_OBJ_INFO ) ), aFtActInfo ( this, SdResId( FT_ACT_INFO ) ), @@ -82,7 +82,7 @@ BreakDlg::BreakDlg( pProgrInfo->Init( nSumActionCount*3, nObjCount ); pDrView = _pDrView; - bCancel = FALSE; + bCancel = sal_False; FreeResource(); } @@ -99,7 +99,7 @@ BreakDlg::~BreakDlg() // Control-Handler fuer den Abbruch Button IMPL_LINK( BreakDlg, CancelButtonHdl, void *, EMPTYARG ) { - bCancel = TRUE; + bCancel = sal_True; aBtnCancel.Disable(); return( 0L ); } @@ -180,7 +180,7 @@ short BreakDlg::Execute() IMPL_LINK( BreakDlg, InitialUpdate, Timer*, EMPTYARG ) { pDrView->DoImportMarkedMtf(pProgrInfo); - EndDialog(TRUE); + EndDialog(sal_True); return 0L; } |