diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-05 10:18:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-05 10:19:31 +0200 |
commit | e4f02b250402d48793fe1bb79d419c0e1a822cb5 (patch) | |
tree | 7f34ed7c04a75e2abc5bf386e6b3986db198b8ca | |
parent | 856f7fc68683b2ed92f65bd79f1b6a23570e06cb (diff) |
tdf#99073 fix double-click tree node expansion in base
fallout from
commit cf0c04a428754dfd5aa477cebc5441bc74e27005
"convert Link<> to typed"
Change-Id: I3452b76320c5355aaf84a0bd67c99b281bb46d0f
-rw-r--r-- | dbaccess/source/ui/control/dbtreelistbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx index c6508436ed16..bd2e26ef8ca1 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) |