diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-23 15:10:45 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-24 16:20:51 +0000 |
commit | 74ce05b940be952be63687f31be45a58afa1d1ee (patch) | |
tree | ad894ce2bd300c1676211d7b8259ab1cd238b507 /include | |
parent | e85b2333bce7b1dcae73861df6d90b48b9f4efe5 (diff) |
convert Link<> to typed
Change-Id: I280473a7a9069a86388f608bddc8e48879771bc9
Reviewed-on: https://gerrit.libreoffice.org/18815
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/graphicfilter.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index a802474999cf..005c146ef14b 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -241,7 +241,7 @@ private: sal_uLong ImplSetError( sal_uLong nError, const SvStream* pStm = NULL ); sal_uInt16 ImpTestOrFindFormat( const OUString& rPath, SvStream& rStream, sal_uInt16& rFormat ); - DECL_LINK( FilterCallback, ConvertData* ); + DECL_LINK_TYPED( FilterCallback, ConvertData&, bool ); protected: @@ -324,7 +324,7 @@ public: const FilterErrorEx& GetLastError() const { return *pErrorEx;} void ResetLastError(); - const Link<> GetFilterCallback() const; + const Link<ConvertData&,bool> GetFilterCallback() const; static GraphicFilter& GetGraphicFilter(); static int LoadGraphic( const OUString& rPath, const OUString& rFilter, Graphic& rGraphic, |