diff options
Diffstat (limited to 'sw/source/ui/fldui/fldvar.cxx')
-rw-r--r-- | sw/source/ui/fldui/fldvar.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/fldui/fldvar.cxx b/sw/source/ui/fldui/fldvar.cxx index 9e416951a34c..a41cf73e9e6a 100644 --- a/sw/source/ui/fldui/fldvar.cxx +++ b/sw/source/ui/fldui/fldvar.cxx @@ -1255,9 +1255,9 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSelectionListBox(Window *pP return pListBox; } -long SelectionListBox::PreNotify( NotifyEvent& rNEvt ) +bool SelectionListBox::PreNotify( NotifyEvent& rNEvt ) { - long nHandled = ListBox::PreNotify( rNEvt ); + bool nHandled = ListBox::PreNotify( rNEvt ); if ( rNEvt.GetType() == EVENT_KEYUP ) { const KeyEvent* pKEvt = rNEvt.GetKeyEvent(); |