summaryrefslogtreecommitdiff
path: root/sd/source/ui/table
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-07 13:48:23 +0200
committerNoel Grandin <noel@peralex.com>2015-09-08 08:16:46 +0200
commit8d927d3f82a33a464662e4b54a8a07d30d4d1a19 (patch)
treed65da75b786634550eb1e7fa4b1859d63e968dfe /sd/source/ui/table
parent61623d5b90510ae6c791a41031d586a9316e74c4 (diff)
convert Link<> to typed
Change-Id: Ia2706c308c6297d05b2862e9f86fc0f2ee90e4f0
Diffstat (limited to 'sd/source/ui/table')
-rw-r--r--sd/source/ui/table/TableDesignPane.cxx3
-rw-r--r--sd/source/ui/table/TableDesignPane.hxx2
2 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx
index 910aa9e44f54..85eb63f46224 100644
--- a/sd/source/ui/table/TableDesignPane.cxx
+++ b/sd/source/ui/table/TableDesignPane.cxx
@@ -161,12 +161,11 @@ static SfxDispatcher* getDispatcher( ViewShellBase& rBase )
return 0;
}
-IMPL_LINK_NOARG(TableDesignWidget, implValueSetHdl)
+IMPL_LINK_NOARG_TYPED(TableDesignWidget, implValueSetHdl, ValueSet*, void)
{
mbStyleSelected = true;
if( !mbModal )
ApplyStyle();
- return 0;
}
void TableDesignWidget::ApplyStyle()
diff --git a/sd/source/ui/table/TableDesignPane.hxx b/sd/source/ui/table/TableDesignPane.hxx
index 64fb0070d23a..065e124f514b 100644
--- a/sd/source/ui/table/TableDesignPane.hxx
+++ b/sd/source/ui/table/TableDesignPane.hxx
@@ -86,7 +86,7 @@ private:
void FillDesignPreviewControl();
DECL_LINK(EventMultiplexerListener, tools::EventMultiplexerEvent*);
- DECL_LINK(implValueSetHdl, void *);
+ DECL_LINK_TYPED(implValueSetHdl, ValueSet*, void);
DECL_LINK_TYPED(implCheckBoxHdl, Button*, void);
private: