summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog/basedlgs.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/dialog/basedlgs.cxx')
-rw-r--r--sfx2/source/dialog/basedlgs.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx
index 25998b0cbffd..628086493c2a 100644
--- a/sfx2/source/dialog/basedlgs.cxx
+++ b/sfx2/source/dialog/basedlgs.cxx
@@ -354,7 +354,7 @@ void SfxModelessDialog::Init(SfxBindings *pBindinx, SfxChildWindow *pCW)
// -----------------------------------------------------------------------
-long SfxModelessDialog::Notify( NotifyEvent& rEvt )
+bool SfxModelessDialog::Notify( NotifyEvent& rEvt )
/* [Description]
@@ -379,7 +379,7 @@ long SfxModelessDialog::Notify( NotifyEvent& rEvt )
if ( !ModelessDialog::Notify( rEvt ) && SfxViewShell::Current() )
// then also for valid global accelerators.
return SfxViewShell::Current()->GlobalKeyInput_Impl( *rEvt.GetKeyEvent() );
- return sal_True;
+ return true;
}
return ModelessDialog::Notify( rEvt );
@@ -442,7 +442,7 @@ void SfxModelessDialog::FillInfo(SfxChildWinInfo& rInfo) const
// -----------------------------------------------------------------------
-long SfxFloatingWindow::Notify( NotifyEvent& rEvt )
+bool SfxFloatingWindow::Notify( NotifyEvent& rEvt )
/* [Description]
@@ -470,7 +470,7 @@ long SfxFloatingWindow::Notify( NotifyEvent& rEvt )
if ( !FloatingWindow::Notify( rEvt ) && SfxViewShell::Current() )
// then also for valid global accelerators.
return SfxViewShell::Current()->GlobalKeyInput_Impl( *rEvt.GetKeyEvent() );
- return sal_True;
+ return true;
}
return FloatingWindow::Notify( rEvt );