From 602c87b4259d118e5db6d8a990c4695103f916dd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 18 Jan 2014 00:18:52 +0100 Subject: Window::PreNotify should return bool Change-Id: Ic9903fd887f2c3fab2630ebeb20df39392177c8d --- svx/source/gallery2/galbrws1.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx/source/gallery2/galbrws1.cxx') diff --git a/svx/source/gallery2/galbrws1.cxx b/svx/source/gallery2/galbrws1.cxx index 84fbb560c688..ed9402b951db 100644 --- a/svx/source/gallery2/galbrws1.cxx +++ b/svx/source/gallery2/galbrws1.cxx @@ -87,9 +87,9 @@ void GalleryThemeListBox::DataChanged( const DataChangedEvent& rDCEvt ) ListBox::DataChanged( rDCEvt ); } -long GalleryThemeListBox::PreNotify( NotifyEvent& rNEvt ) +bool GalleryThemeListBox::PreNotify( NotifyEvent& rNEvt ) { - long nDone = 0; + bool nDone = true; if( rNEvt.GetType() == EVENT_COMMAND ) { @@ -106,7 +106,7 @@ long GalleryThemeListBox::PreNotify( NotifyEvent& rNEvt ) nDone = static_cast< GalleryBrowser1* >( GetParent() )->KeyInput( *pKEvt, this ); } - return( nDone ? nDone : ListBox::PreNotify( rNEvt ) ); + return( nDone || ListBox::PreNotify( rNEvt ) ); } // - GalleryBrowser1 - -- cgit