summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs/lbseldlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/miscdlgs/lbseldlg.cxx')
-rw-r--r--sc/source/ui/miscdlgs/lbseldlg.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/miscdlgs/lbseldlg.cxx b/sc/source/ui/miscdlgs/lbseldlg.cxx
index 67adcb1dbe9a..4c0b592c7073 100644
--- a/sc/source/ui/miscdlgs/lbseldlg.cxx
+++ b/sc/source/ui/miscdlgs/lbseldlg.cxx
@@ -45,9 +45,10 @@ OUString ScSelEntryDlg::GetSelectedEntry() const
return m_xLb->get_selected_text();
}
-IMPL_LINK_NOARG(ScSelEntryDlg, DblClkHdl, weld::TreeView&, void)
+IMPL_LINK_NOARG(ScSelEntryDlg, DblClkHdl, weld::TreeView&, bool)
{
m_xDialog->response(RET_OK);
+ return true;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */