diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-30 15:03:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-30 16:59:08 +0200 |
commit | b3068470966530fa1d0b0c76d9095c6edb6a0df0 (patch) | |
tree | d137d408c01bf56b5a31af67c9be989d4f7fa3a6 /sfx2 | |
parent | ebd62f7c793552fc9c10480421e2740413922b39 (diff) |
No need for LINK vs LINK_TYPED distinction
(fully qualify ::tools::detail::makeLink to avoid clashes with namespace
basegfx::tools)
Change-Id: I52818d0a47c78f1af7673ff91eb6517bc0820655
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appmain.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appmain.cxx b/sfx2/source/appl/appmain.cxx index 128b6f9ff1c6..c8f8da897a18 100644 --- a/sfx2/source/appl/appmain.cxx +++ b/sfx2/source/appl/appmain.cxx @@ -51,7 +51,7 @@ SfxFilterMatcher& SfxApplication::GetFilterMatcher() if( !pAppData_Impl->pMatcher ) { pAppData_Impl->pMatcher = new SfxFilterMatcher(); - URIHelper::SetMaybeFileHdl( LINK_TYPED( + URIHelper::SetMaybeFileHdl( LINK( pAppData_Impl->pMatcher, SfxFilterMatcher, MaybeFileHdl_Impl ) ); } return *pAppData_Impl->pMatcher; |