summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-09-03 11:10:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-09-04 06:31:30 +0000
commit4ea70f87f7a2b61eda6e5ab1f48debf6fcfadc1f (patch)
tree83ba4d72bdf86a5fa252b14d32345fdf91fffe09 /starmath/inc
parent5338d2abe4078626d2cfa38cde99dfa1d4eb2f6b (diff)
convert Link<> to typed
Change-Id: I2136c3db2742afcb4722f69297276bea1e0119f4 Reviewed-on: https://gerrit.libreoffice.org/18306 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/ElementsDockingWindow.hxx2
-rw-r--r--starmath/inc/dialog.hxx2
-rw-r--r--starmath/inc/edit.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/starmath/inc/ElementsDockingWindow.hxx b/starmath/inc/ElementsDockingWindow.hxx
index 7cf8abb353da..c8ad31788839 100644
--- a/starmath/inc/ElementsDockingWindow.hxx
+++ b/starmath/inc/ElementsDockingWindow.hxx
@@ -121,7 +121,7 @@ public:
Size GetOptimalSize() const SAL_OVERRIDE;
- DECL_LINK( ScrollHdl, void* );
+ DECL_LINK_TYPED( ScrollHdl, ScrollBar*, void );
void DoScroll(long nDelta);
boost::signals2::signal< void ( SmElement* ) > selectedSignal;
diff --git a/starmath/inc/dialog.hxx b/starmath/inc/dialog.hxx
index ec94f62ce7a5..70b627368501 100644
--- a/starmath/inc/dialog.hxx
+++ b/starmath/inc/dialog.hxx
@@ -287,7 +287,7 @@ class SmShowSymbolSetWindow : public Control
virtual void Resize() SAL_OVERRIDE;
virtual Size GetOptimalSize() const SAL_OVERRIDE;
- DECL_LINK( ScrollHdl, ScrollBar* );
+ DECL_LINK_TYPED( ScrollHdl, ScrollBar*, void );
public:
SmShowSymbolSetWindow(vcl::Window *pParent, WinBits nStyle);
virtual ~SmShowSymbolSetWindow();
diff --git a/starmath/inc/edit.hxx b/starmath/inc/edit.hxx
index 75d1d34826d8..b69d90af9d83 100644
--- a/starmath/inc/edit.hxx
+++ b/starmath/inc/edit.hxx
@@ -73,7 +73,7 @@ class SmEditWindow : public vcl::Window, public DropTargetHelper
virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE;
DECL_LINK(EditStatusHdl ,EditStatus *);
- DECL_LINK(ScrollHdl, ScrollBar *);
+ DECL_LINK_TYPED(ScrollHdl, ScrollBar*, void);
void CreateEditView();
Rectangle AdjustScrollBars();