summaryrefslogtreecommitdiff
path: root/include/basebmp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-03-27 08:29:36 +0200
committerNoel Grandin <noel@peralex.com>2015-03-27 10:51:08 +0200
commit44790193a74923d42228277ed46723ba9e225136 (patch)
tree625f721df9135f36dc8101ad964a6b2331780d82 /include/basebmp
parentc4a9241f72e3b7bf84eaadc51dbaa2accc7b920c (diff)
loplugin:staticfunction
Change-Id: I982ba552579019e4902ae59fddf14a6b34ba5954
Diffstat (limited to 'include/basebmp')
-rw-r--r--include/basebmp/accessoradapters.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/basebmp/accessoradapters.hxx b/include/basebmp/accessoradapters.hxx
index e32533973ea8..0d0122e5c7d2 100644
--- a/include/basebmp/accessoradapters.hxx
+++ b/include/basebmp/accessoradapters.hxx
@@ -208,9 +208,9 @@ public:
- typename SetterFunctor::result_type setter(
+ static typename SetterFunctor::result_type setter(
typename SetterFunctor::first_argument_type v1,
- argument_type v2 ) const
+ argument_type v2 )
{
return maSetterFunctor(v1,v2);
}
@@ -343,10 +343,10 @@ public:
- typename Functor::result_type setter(
+ static typename Functor::result_type setter(
typename Functor::first_argument_type v1,
typename Functor::second_argument_type v2,
- argument_type v3 ) const
+ argument_type v3 )
{
return maSetterFunctor(v1,v2,v3);
}