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 --- dbaccess/source/ui/relationdesign/RelationDesignView.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dbaccess/source/ui/relationdesign/RelationDesignView.cxx') diff --git a/dbaccess/source/ui/relationdesign/RelationDesignView.cxx b/dbaccess/source/ui/relationdesign/RelationDesignView.cxx index 9f72313c1a98..b97fe50eb370 100644 --- a/dbaccess/source/ui/relationdesign/RelationDesignView.cxx +++ b/dbaccess/source/ui/relationdesign/RelationDesignView.cxx @@ -71,15 +71,15 @@ void ORelationDesignView::initialize() OJoinDesignView::initialize(); } -long ORelationDesignView::PreNotify( NotifyEvent& rNEvt ) +bool ORelationDesignView::PreNotify( NotifyEvent& rNEvt ) { - long nDone = 0L; + bool nDone = false; if(rNEvt.GetType() == EVENT_GETFOCUS) { if(!m_pTableView->HasChildPathFocus()) { m_pTableView->GrabTabWinFocus(); - nDone = 1L; + nDone = true; } } if(!nDone) -- cgit