summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-17 13:45:33 +0200
committerNoel Grandin <noel@peralex.com>2015-09-17 14:41:58 +0200
commit0fd07e53efbe6ff73db51711d36f9aeaf893479e (patch)
tree9b0522e4ff30628d0ccd1f528e3a28cc1e4ae6dc /sd/source/ui/inc
parent54a5ae1b35680f54979890f62aae96d79b4f9874 (diff)
convert Link<> to typed
Change-Id: I2f5b962da2d14f68b34029cac4ec7a7ed51937c6
Diffstat (limited to 'sd/source/ui/inc')
-rw-r--r--sd/source/ui/inc/docprev.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/inc/docprev.hxx b/sd/source/ui/inc/docprev.hxx
index f28e7a7d3dfe..8abb261d888b 100644
--- a/sd/source/ui/inc/docprev.hxx
+++ b/sd/source/ui/inc/docprev.hxx
@@ -43,7 +43,7 @@ class SD_DLLPUBLIC SdDocPreviewWin : public Control, public SfxListener
protected:
GDIMetaFile* pMetaFile;
bool bInEffect;
- Link<> aClickHdl;
+ Link<SdDocPreviewWin&,void> aClickHdl;
SfxObjectShell* mpObj;
sal_uInt16 mnShowPage;
Color maDocumentColor;
@@ -72,7 +72,7 @@ public:
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
- void SetClickHdl( const Link<>& rLink ) { aClickHdl = rLink; }
+ void SetClickHdl( const Link<SdDocPreviewWin&,void>& rLink ) { aClickHdl = rLink; }
virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;