summaryrefslogtreecommitdiff
path: root/cui/source/inc/hangulhanjadlg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-09-22 12:34:17 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-09-22 18:55:17 +0000
commit5645960113b3b7ded309bdb2ed5bd4a51877b96c (patch)
treec3f0abcea49e0f1f9b94fbd8eeeb1fbc2af075f5 /cui/source/inc/hangulhanjadlg.hxx
parenta19f981ea1c31a9a3af4a9368dc50f045701a047 (diff)
convert Link<> to typed
Change-Id: I2d3ed4e04b19159bd847a925a7296e981a6d468a Reviewed-on: https://gerrit.libreoffice.org/18771 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui/source/inc/hangulhanjadlg.hxx')
-rw-r--r--cui/source/inc/hangulhanjadlg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/inc/hangulhanjadlg.hxx b/cui/source/inc/hangulhanjadlg.hxx
index 8210431f3462..fca9f5007b41 100644
--- a/cui/source/inc/hangulhanjadlg.hxx
+++ b/cui/source/inc/hangulhanjadlg.hxx
@@ -124,14 +124,14 @@ namespace svx
VclPtr<CheckBox> m_pHanjaOnly;
VclPtr<CheckBox> m_pReplaceByChar;
- VclPtr<CheckBox> m_pIgnoreNonPrimary;
+ VclPtr<CheckBox> m_pIgnoreNonPrimary;
/** are we working for a document? This is normally true, but in case
the user uses the "find" functionality, we switch to working
with what the user entered, which then does not have any relation to
the document anymore. Some functionality must be disabled then */
bool m_bDocumentMode;
- Link<> m_aOptionsChangedLink;
+ Link<LinkParamNone*,void> m_aOptionsChangedLink;
Link<> m_aClickByCharacterLink;
public:
@@ -142,7 +142,7 @@ namespace svx
virtual void dispose() SAL_OVERRIDE;
public:
- void SetOptionsChangedHdl( const Link<>& _rHdl );
+ void SetOptionsChangedHdl( const Link<LinkParamNone*,void>& _rHdl );
void SetIgnoreHdl( const Link<Button*,void>& _rHdl );
void SetIgnoreAllHdl( const Link<Button*,void>& _rHdl );
void SetChangeHdl( const Link<Button*,void>& _rHdl );