From 4b55c28940d741e53648115a9cfb58f2d6db38a5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 14 Oct 2015 16:55:36 +0200 Subject: simplify the way we override behaviour here just send everything via callModifiedHdl() Change-Id: I011df1d1c376deae962b465e4a27e98af968de6f --- dbaccess/source/ui/dlg/TextConnectionHelper.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbaccess/source/ui/dlg/TextConnectionHelper.hxx') diff --git a/dbaccess/source/ui/dlg/TextConnectionHelper.hxx b/dbaccess/source/ui/dlg/TextConnectionHelper.hxx index d53091c5f3b9..75fa11b6b6ef 100644 --- a/dbaccess/source/ui/dlg/TextConnectionHelper.hxx +++ b/dbaccess/source/ui/dlg/TextConnectionHelper.hxx @@ -80,7 +80,7 @@ namespace dbaui short m_nAvailableSections; protected: - void callModifiedHdl() const { if (m_aModifiedHandler.IsSet()) m_aModifiedHandler.Call(const_cast(this)); } + void callModifiedHdl() const { m_aModifiedHandler.Call(const_cast(this)); } Link<> getControlModifiedLink() { return LINK(this, OTextConnectionHelper, OnControlModified); } DECL_LINK_TYPED(OnSetExtensionHdl,RadioButton&,void); DECL_LINK(OnControlModified,Control*); -- cgit