summaryrefslogtreecommitdiff
path: root/editeng/source/editeng/impedit.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-16 13:02:21 +0200
committerNoel Grandin <noel@peralex.com>2015-09-17 08:19:32 +0200
commit7ffa2184586a2339f80f0af41c303dad9e822390 (patch)
tree292c4f9a77e71a78058795c2e22e184fa86f1829 /editeng/source/editeng/impedit.hxx
parent81bec2e5535aeef7d6ae76f92124537d528f5c23 (diff)
convert Link<> to typed
Change-Id: I93017f16affe16e8e452cd829bc4f9b495670d4d
Diffstat (limited to 'editeng/source/editeng/impedit.hxx')
-rw-r--r--editeng/source/editeng/impedit.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/editeng/source/editeng/impedit.hxx b/editeng/source/editeng/impedit.hxx
index 50c583f00814..64d58a120272 100644
--- a/editeng/source/editeng/impedit.hxx
+++ b/editeng/source/editeng/impedit.hxx
@@ -487,8 +487,8 @@ private:
Link<PasteOrDropInfos&,void> aBeginPasteOrDropHdl;
Link<PasteOrDropInfos&,void> aEndPasteOrDropHdl;
Link<LinkParamNone*,void> aModifyHdl;
- Link<> maBeginDropHdl;
- Link<> maEndDropHdl;
+ Link<EditView*,void> maBeginDropHdl;
+ Link<EditView*,void> maEndDropHdl;
rtl::Reference<SvxForbiddenCharactersTable> xForbiddenCharsTable;
@@ -996,12 +996,12 @@ public:
static void SetForbiddenCharsTable( rtl::Reference<SvxForbiddenCharactersTable> xForbiddenChars );
/** sets a link that is called at the beginning of a drag operation at an edit view */
- void SetBeginDropHdl( const Link<>& rLink ) { maBeginDropHdl = rLink; }
- Link<> GetBeginDropHdl() const { return maBeginDropHdl; }
+ void SetBeginDropHdl( const Link<EditView*,void>& rLink ) { maBeginDropHdl = rLink; }
+ Link<EditView*,void> GetBeginDropHdl() const { return maBeginDropHdl; }
/** sets a link that is called at the end of a drag operation at an edit view */
- void SetEndDropHdl( const Link<>& rLink ) { maEndDropHdl = rLink; }
- Link<> GetEndDropHdl() const { return maEndDropHdl; }
+ void SetEndDropHdl( const Link<EditView*,void>& rLink ) { maEndDropHdl = rLink; }
+ Link<EditView*,void> GetEndDropHdl() const { return maEndDropHdl; }
/// specifies if auto-correction should capitalize the first word or not (default is on)
void SetFirstWordCapitalization( bool bCapitalize ) { bFirstWordCapitalization = bCapitalize; }