dbaccess/source/ui/control/dbtreelistbox.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e4f02b250402d48793fe1bb79d419c0e1a822cb5 Author: Noel Grandin <[email protected]> Date: Tue Apr 5 10:18:55 2016 +0200 tdf#99073 fix double-click tree node expansion in base fallout from commit cf0c04a428754dfd5aa477cebc5441bc74e27005 "convert Link<> to typed" Change-Id: I3452b76320c5355aaf84a0bd67c99b281bb46d0f diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx index c650843..bd2e26e 100644 --- a/dbaccess/source/ui/control/dbtreelistbox.cxx +++ b/dbaccess/source/ui/control/dbtreelistbox.cxx @@ -386,7 +386,7 @@ bool DBTreeListBox::EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewTe bool DBTreeListBox::DoubleClickHdl() { // continue default processing if the DoubleClickHandler didn't handle it - return aDoubleClickHdl.Call( this ); + return !aDoubleClickHdl.Call( this ); } void scrollWindow(DBTreeListBox* _pListBox, const Point& _rPos,bool _bUp) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
