diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 22:24:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 22:26:22 +0200 |
commit | a53808c0ed577468393aced90963af6496706959 (patch) | |
tree | 3f858f7115bda93d4ed90463c271f9597599fd20 /svtools | |
parent | ccfbc9d3ac83fa238d6240b5365dc7572c64d241 (diff) |
loplugin:dllprivate
Change-Id: I1fe70a39c50aba8b84c117653185fc37dbbfeab0
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/misc/acceleratorexecute.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/misc/acceleratorexecute.cxx b/svtools/source/misc/acceleratorexecute.cxx index a34281b4f150..f476026a5b23 100644 --- a/svtools/source/misc/acceleratorexecute.cxx +++ b/svtools/source/misc/acceleratorexecute.cxx @@ -42,7 +42,7 @@ namespace svt { -class SVT_DLLPRIVATE AsyncAccelExec : public cppu::WeakImplHelper<css::lang::XEventListener> +class AsyncAccelExec : public cppu::WeakImplHelper<css::lang::XEventListener> { private: css::uno::Reference<css::lang::XComponent> m_xFrame; @@ -74,11 +74,11 @@ class SVT_DLLPRIVATE AsyncAccelExec : public cppu::WeakImplHelper<css::lang::XEv /** @short allow creation of instances of this class by using our factory only! */ - SVT_DLLPRIVATE AsyncAccelExec(const css::uno::Reference<css::lang::XComponent>& xFrame, + AsyncAccelExec(const css::uno::Reference<css::lang::XComponent>& xFrame, const css::uno::Reference< css::frame::XDispatch >& xDispatch, const css::util::URL& rURL); - DECL_DLLPRIVATE_LINK_TYPED(impl_ts_asyncCallback, LinkParamNone*, void); + DECL_LINK_TYPED(impl_ts_asyncCallback, LinkParamNone*, void); }; |