diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-06-29 20:50:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-06-29 20:50:28 +0200 |
commit | 8775290658df28f331bfc2611a072fd691620417 (patch) | |
tree | b131fbc30ec4147f299b6cb728c7557dc0cfffdc /cui | |
parent | 97fda453bc43fbae3d0a9fd05259e92d3205fd06 (diff) |
loplugin:staticmethods
Change-Id: I506f1e79a7500ab79dd0f199150949face091931
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optopencl.cxx | 2 | ||||
-rw-r--r-- | cui/source/options/optopencl.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optopencl.cxx b/cui/source/options/optopencl.cxx index 3fd584880a51..ec8f432816eb 100644 --- a/cui/source/options/optopencl.cxx +++ b/cui/source/options/optopencl.cxx @@ -130,7 +130,7 @@ void SvxOpenCLTabPage::EnableOpenCLHdl(VclFrame* pFrame, bool aEnable) } -IMPL_LINK_NOARG_TYPED(SvxOpenCLTabPage, EnableOpenCLHdl, Button*, void) +IMPL_STATIC_LINK_NOARG_TYPED(SvxOpenCLTabPage, EnableOpenCLHdl, Button*, void) { } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/cui/source/options/optopencl.hxx b/cui/source/options/optopencl.hxx index f66f3f486ee7..d6379682c310 100644 --- a/cui/source/options/optopencl.hxx +++ b/cui/source/options/optopencl.hxx @@ -36,7 +36,7 @@ private: VclPtr<FixedText> clUsed; - DECL_LINK_TYPED(EnableOpenCLHdl, Button*, void); + DECL_STATIC_LINK_TYPED(SvxOpenCLTabPage, EnableOpenCLHdl, Button*, void); static void EnableOpenCLHdl(VclFrame* pFrame, bool aEnable); |