summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/TextConnectionHelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-14 16:55:36 +0200
committerNoel Grandin <noel@peralex.com>2015-10-15 08:11:33 +0200
commit4b55c28940d741e53648115a9cfb58f2d6db38a5 (patch)
tree521027d28dc184840bf01c62949efac2e0ced5ce /dbaccess/source/ui/dlg/TextConnectionHelper.hxx
parentaa2886cf7d86175fead49a038b16a77a982a777f (diff)
simplify the way we override behaviour here
just send everything via callModifiedHdl() Change-Id: I011df1d1c376deae962b465e4a27e98af968de6f
Diffstat (limited to 'dbaccess/source/ui/dlg/TextConnectionHelper.hxx')
-rw-r--r--dbaccess/source/ui/dlg/TextConnectionHelper.hxx2
1 files changed, 1 insertions, 1 deletions
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<OTextConnectionHelper *>(this)); }
+ void callModifiedHdl() const { m_aModifiedHandler.Call(const_cast<OTextConnectionHelper *>(this)); }
Link<> getControlModifiedLink() { return LINK(this, OTextConnectionHelper, OnControlModified); }
DECL_LINK_TYPED(OnSetExtensionHdl,RadioButton&,void);
DECL_LINK(OnControlModified,Control*);