summaryrefslogtreecommitdiff
path: root/include/sfx2/genlink.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/genlink.hxx')
-rw-r--r--include/sfx2/genlink.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/genlink.hxx b/include/sfx2/genlink.hxx
index b9e23e5127e9..5c738e3dd902 100644
--- a/include/sfx2/genlink.hxx
+++ b/include/sfx2/genlink.hxx
@@ -25,13 +25,13 @@ typedef long (*CFuncPtr)(void*);
class GenLink
{
- Link aLink;
+ Link<> aLink;
CFuncPtr pFunc;
public:
GenLink(): pFunc(0) {}
GenLink( CFuncPtr pCFunc ): pFunc(pCFunc) {}
- GenLink( const Link& rLink ): aLink(rLink), pFunc(0) {}
+ GenLink( const Link<>& rLink ): aLink(rLink), pFunc(0) {}
GenLink( const GenLink& rOrig ):
aLink(rOrig.aLink), pFunc(rOrig.pFunc) {}