summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-05 10:18:55 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-04-12 08:47:16 +0000
commitb3f357129d589dcfe8dd9c817bc8aead72b31f9b (patch)
treeac18caf429f6dade5c82ec5699d38945c04251c6
parente441b3e87e83af2018bbbfd698fd701fe5624181 (diff)
tdf#99073 fix double-click tree node expansion in base
fallout from commit cf0c04a428754dfd5aa477cebc5441bc74e27005 "convert Link<> to typed" Change-Id: I3452b76320c5355aaf84a0bd67c99b281bb46d0f (cherry picked from commit e4f02b250402d48793fe1bb79d419c0e1a822cb5) Reviewed-on: https://gerrit.libreoffice.org/23838 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r--dbaccess/source/ui/control/dbtreelistbox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx
index 4de1b8129b3e..3a1c35732b61 100644
--- a/dbaccess/source/ui/control/dbtreelistbox.cxx
+++ b/dbaccess/source/ui/control/dbtreelistbox.cxx
@@ -387,7 +387,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)