Kaydet (Commit) eebef7c8 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

SfxRequest generically uses an SfxUInt16Item here

Change-Id: I872d666bee073ef570971ec36e678cc7354fc498
üst c61b562d
......@@ -206,12 +206,12 @@ void FuTemplate::DoExecute( SfxRequest& rReq )
if( pStyleSheet )
{
pSSPool->Remove( pStyleSheet );
nRetMask = sal_True;
nRetMask = sal_uInt16(true);
mpDoc->SetChanged(true);
}
else
{
nRetMask = sal_False;
nRetMask = sal_uInt16(false);
}
break;
......@@ -219,7 +219,7 @@ void FuTemplate::DoExecute( SfxRequest& rReq )
case SID_STYLE_SHOW:
pStyleSheet = pSSPool->Find( aStyleName, (SfxStyleFamily) nFamily);
pStyleSheet->SetHidden( nSId == SID_STYLE_HIDE );
nRetMask = sal_True;
nRetMask = sal_uInt16(true);
break;
case SID_STYLE_APPLY:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment