summaryrefslogtreecommitdiffstats
path: root/extensions/source/dbpilots/listcombowizard.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/dbpilots/listcombowizard.cxx')
-rw-r--r--extensions/source/dbpilots/listcombowizard.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx
index 8192180e9c1a..a1440f2468a3 100644
--- a/extensions/source/dbpilots/listcombowizard.cxx
+++ b/extensions/source/dbpilots/listcombowizard.cxx
@@ -292,10 +292,11 @@ namespace dbp
updateDialogTravelUI();
}
- IMPL_LINK( OContentTableSelection, OnTableDoubleClicked, weld::TreeView&, _rListBox, void )
+ IMPL_LINK( OContentTableSelection, OnTableDoubleClicked, weld::TreeView&, _rListBox, bool )
{
if (_rListBox.count_selected_rows())
getDialog()->travelNext();
+ return true;
}
void OContentTableSelection::initializePage()
@@ -369,10 +370,11 @@ namespace dbp
return 0 != m_xSelectTableField->count_selected_rows();
}
- IMPL_LINK_NOARG( OContentFieldSelection, OnTableDoubleClicked, weld::TreeView&, void )
+ IMPL_LINK_NOARG( OContentFieldSelection, OnTableDoubleClicked, weld::TreeView&, bool )
{
if (m_xSelectTableField->count_selected_rows())
getDialog()->travelNext();
+ return true;
}
IMPL_LINK_NOARG( OContentFieldSelection, OnFieldSelected, weld::TreeView&, void )