summaryrefslogtreecommitdiffstats
path: root/svtools/source/filter
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 /svtools/source/filter
parentconvert Link<> to typed (diff)
downloadcore-4ea70f87f7a2b61eda6e5ab1f48debf6fcfadc1f.tar.gz
core-4ea70f87f7a2b61eda6e5ab1f48debf6fcfadc1f.zip
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 'svtools/source/filter')
-rw-r--r--svtools/source/filter/exportdialog.cxx3
-rw-r--r--svtools/source/filter/exportdialog.hxx2
2 files changed, 2 insertions, 3 deletions
diff --git a/svtools/source/filter/exportdialog.cxx b/svtools/source/filter/exportdialog.cxx
index 5f5f85e8659f..35998633b37b 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -1120,11 +1120,10 @@ IMPL_LINK_NOARG(ExportDialog, UpdateHdlNfResolution)
return 0;
}
-IMPL_LINK_NOARG(ExportDialog, SbCompressionUpdateHdl)
+IMPL_LINK_NOARG_TYPED(ExportDialog, SbCompressionUpdateHdl, ScrollBar*, void)
{
mpNfCompression->SetValue( mpSbCompression->GetThumbPos() );
updateControls();
- return 0;
}
IMPL_LINK_NOARG_TYPED(ExportDialog, OK, Button*, void)
diff --git a/svtools/source/filter/exportdialog.hxx b/svtools/source/filter/exportdialog.hxx
index 898e6aaf6f16..0dc3dd05c054 100644
--- a/svtools/source/filter/exportdialog.hxx
+++ b/svtools/source/filter/exportdialog.hxx
@@ -147,7 +147,7 @@ private:
DECL_LINK( UpdateHdlMtfSizeX, void* );
DECL_LINK( UpdateHdlMtfSizeY, void* );
DECL_LINK( UpdateHdlNfResolution, void* );
- DECL_LINK( SbCompressionUpdateHdl, void* );
+ DECL_LINK_TYPED( SbCompressionUpdateHdl, ScrollBar*, void );
DECL_LINK_TYPED( OK, Button*, void );