summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/drviewsi.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/drviewsi.cxx')
-rwxr-xr-x[-rw-r--r--]sd/source/ui/view/drviewsi.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sd/source/ui/view/drviewsi.cxx b/sd/source/ui/view/drviewsi.cxx
index 17ebe33ea540..d91dcf6f8da6 100644..100755
--- a/sd/source/ui/view/drviewsi.cxx
+++ b/sd/source/ui/view/drviewsi.cxx
@@ -83,13 +83,13 @@ void DrawViewShell::ExecEffectWin( SfxRequest& rReq )
{
CheckLineTo (rReq);
- USHORT nSId = rReq.GetSlot();
+ sal_uInt16 nSId = rReq.GetSlot();
switch( nSId )
{
case SID_3D_INIT:
{
- USHORT nId = Svx3DChildWindow::GetChildWindowId();
+ sal_uInt16 nId = Svx3DChildWindow::GetChildWindowId();
SfxChildWindow* pWindow = GetViewFrame()->GetChildWindow( nId );
if( pWindow )
{
@@ -122,7 +122,7 @@ void DrawViewShell::ExecEffectWin( SfxRequest& rReq )
\************************************************************************/
void DrawViewShell::Update3DWindow()
{
- USHORT nId = Svx3DChildWindow::GetChildWindowId();
+ sal_uInt16 nId = Svx3DChildWindow::GetChildWindowId();
SfxChildWindow* pWindow = GetViewFrame()->GetChildWindow( nId );
if( pWindow )
{
@@ -139,7 +139,7 @@ void DrawViewShell::Update3DWindow()
void DrawViewShell::AssignFrom3DWindow()
{
- USHORT nId = Svx3DChildWindow::GetChildWindowId();
+ sal_uInt16 nId = Svx3DChildWindow::GetChildWindowId();
SfxChildWindow* pWin = GetViewFrame()->GetChildWindow( nId );
if( pWin )
{
@@ -161,12 +161,12 @@ void DrawViewShell::AssignFrom3DWindow()
// Nur TextAttribute zuweisen
SfxItemSet aTextSet( GetDoc()->GetPool(),
EE_ITEMS_START, EE_ITEMS_END, 0 );
- aTextSet.Put( aSet, FALSE );
+ aTextSet.Put( aSet, sal_False );
GetView()->SetAttributes( aTextSet );
// Text in 3D umwandeln
- USHORT nSId = SID_CONVERT_TO_3D;
- SfxBoolItem aItem( nSId, TRUE );
+ sal_uInt16 nSId = SID_CONVERT_TO_3D;
+ SfxBoolItem aItem( nSId, sal_True );
GetViewFrame()->GetDispatcher()->Execute(
nSId, SFX_CALLMODE_SYNCHRON | SFX_CALLMODE_RECORD, &aItem, 0L );