summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/app/AppDetailPageHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/app/AppDetailPageHelper.cxx')
-rw-r--r--dbaccess/source/ui/app/AppDetailPageHelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/app/AppDetailPageHelper.cxx b/dbaccess/source/ui/app/AppDetailPageHelper.cxx
index 012096da1471..6c2777e45a23 100644
--- a/dbaccess/source/ui/app/AppDetailPageHelper.cxx
+++ b/dbaccess/source/ui/app/AppDetailPageHelper.cxx
@@ -130,15 +130,15 @@ namespace
virtual void DataChanged(const DataChangedEvent& rDCEvt);
public:
OTablePreviewWindow( Window* pParent, WinBits nStyle = 0 );
- virtual long Notify( NotifyEvent& rNEvt );
+ virtual bool Notify( NotifyEvent& rNEvt );
};
OTablePreviewWindow::OTablePreviewWindow(Window* pParent, WinBits nStyle) : Window( pParent, nStyle)
{
ImplInitSettings( sal_True, sal_True, sal_True );
}
- long OTablePreviewWindow::Notify( NotifyEvent& rNEvt )
+ bool OTablePreviewWindow::Notify( NotifyEvent& rNEvt )
{
- long nRet = Window::Notify( rNEvt );
+ bool nRet = Window::Notify( rNEvt );
if ( rNEvt.GetType() == EVENT_INPUTENABLE && IsInputEnabled() )
PostUserEvent( LINK( this, OTablePreviewWindow, OnDisableInput) );
return nRet;