diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-14 16:17:22 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-14 16:17:22 +0100 |
commit | 1fb042333fe6287756ff1fac11d18cd7c150730d (patch) | |
tree | 595de5d187177832ce656d7832af9dce9dce2d99 /sfx2/source/dialog/styledlg.cxx | |
parent | 5b3e910e926c7dd1e8dcfe8e0a5c6cb5bd17480a (diff) | |
parent | cd0d6a5a6775f197fdb7e78b54c8133074a7a236 (diff) |
rebase to DEV300_m100
Diffstat (limited to 'sfx2/source/dialog/styledlg.cxx')
-rw-r--r-- | sfx2/source/dialog/styledlg.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/dialog/styledlg.cxx b/sfx2/source/dialog/styledlg.cxx index e1d01de94955..1a155458995f 100644 --- a/sfx2/source/dialog/styledlg.cxx +++ b/sfx2/source/dialog/styledlg.cxx @@ -51,7 +51,7 @@ SfxStyleDialog::SfxStyleDialog Window* pParent, // Parent const ResId& rResId, // ResId SfxStyleSheetBase& rStyle, // zu bearbeitendes StyleSheet - BOOL bFreeRes, // Flag Resourcen freigeben + sal_Bool bFreeRes, // Flag Resourcen freigeben const String* pUserBtnTxt ) : @@ -64,7 +64,7 @@ SfxStyleDialog::SfxStyleDialog rStyle.GetItemSet().Clone(), // auch ohne ParentSupport TRUE "ubergeben, aber erweitert // um den StandardButton zu unterdr"ucken - rStyle.HasParentSupport() ? TRUE : 2, + rStyle.HasParentSupport() ? sal_True : 2, pUserBtnTxt ), pStyle( &rStyle ) @@ -72,7 +72,7 @@ SfxStyleDialog::SfxStyleDialog { AddTabPage( ID_TABPAGE_MANAGESTYLES, String( SfxResId( STR_TABPAGE_MANAGESTYLES ) ), - SfxManageStyleSheetPage::Create, 0, FALSE, 0 ); + SfxManageStyleSheetPage::Create, 0, sal_False, 0 ); // bei neuer Vorlage immer die Verwaltungsseite als aktuelle // Seite setzen @@ -154,11 +154,11 @@ IMPL_LINK( SfxStyleDialog, CancelHdl, Button *, pButton ) const SfxItemSet* pInSet = GetInputSetImpl(); SfxWhichIter aIter( *pInSet ); - USHORT nWhich = aIter.FirstWhich(); + sal_uInt16 nWhich = aIter.FirstWhich(); while ( nWhich ) { - SfxItemState eState = pInSet->GetItemState( nWhich, FALSE ); + SfxItemState eState = pInSet->GetItemState( nWhich, sal_False ); if ( SFX_ITEM_DEFAULT == eState ) pExampleSet->ClearItem( nWhich ); |