diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-28 13:22:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-31 09:50:10 +0200 |
commit | 7b096a6da180bb11ffbff15c9a5358c63596cc34 (patch) | |
tree | f5330ead159ec348c0aae10855c770804bd4cba8 /include/sfx2/docfile.hxx | |
parent | f144e591f5786f1cac177e4e6eb13795eeda2657 (diff) |
make Link<> typed
Change-Id: I8949a92792df892b7f360e6b9979c8f61c702ce3
Diffstat (limited to 'include/sfx2/docfile.hxx')
-rw-r--r-- | include/sfx2/docfile.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/docfile.hxx b/include/sfx2/docfile.hxx index d5404e254404..c3c9e94bbdb6 100644 --- a/include/sfx2/docfile.hxx +++ b/include/sfx2/docfile.hxx @@ -134,8 +134,8 @@ public: const OUString& GetPhysicalName() const; SAL_WARN_UNUSED_RESULT bool IsRemote() const; SAL_WARN_UNUSED_RESULT bool IsOpen() const; // { return aStorage.Is() || pInStream; } - void Download( const Link<>& aLink = Link<>()); - void SetDoneLink( const Link<>& rLink ); + void Download( const Link<void*,void>& aLink = Link<void*,void>()); + void SetDoneLink( const Link<void*,void>& rLink ); sal_uInt32 GetErrorCode() const; sal_uInt32 GetError() const |