summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/morphdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/dlg/morphdlg.cxx')
-rwxr-xr-x[-rw-r--r--]sd/source/ui/dlg/morphdlg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/dlg/morphdlg.cxx b/sd/source/ui/dlg/morphdlg.cxx
index 47780b0f8233..c6abe9584ed5 100644..100755
--- a/sd/source/ui/dlg/morphdlg.cxx
+++ b/sd/source/ui/dlg/morphdlg.cxx
@@ -125,8 +125,8 @@ void MorphDlg::LoadSettings()
SvStorageStreamRef xIStm( SD_MOD()->GetOptionStream( UniString::CreateFromAscii(
RTL_CONSTASCII_STRINGPARAM( SD_OPTION_MORPHING ) ),
SD_OPTION_LOAD ) );
- UINT16 nSteps;
- BOOL bOrient, bAttrib;
+ sal_uInt16 nSteps;
+ sal_Bool bOrient, bAttrib;
if( xIStm.Is() )
{
@@ -137,7 +137,7 @@ void MorphDlg::LoadSettings()
else
{
nSteps = 16;
- bOrient = bAttrib = TRUE;
+ bOrient = bAttrib = sal_True;
}
aMtfSteps.SetValue( nSteps );
@@ -157,7 +157,7 @@ void MorphDlg::SaveSettings() const
{
SdIOCompat aCompat( *xOStm, STREAM_WRITE, 1 );
- *xOStm << (UINT16) aMtfSteps.GetValue()
+ *xOStm << (sal_uInt16) aMtfSteps.GetValue()
<< aCbxOrientation.IsChecked()
<< aCbxAttributes.IsChecked();
}