summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej.hunt@collabora.com>2014-03-18 19:18:02 +0000
committerAndrzej Hunt <andrzej.hunt@collabora.com>2014-03-18 19:49:59 +0000
commitd69346b170a627b039ac1309d427aa3ef764f628 (patch)
treefe2bbdbbfe5439674460fd19bf8bc00f1fc80b39 /unodevtools
parent61ac7172272daca01d76ed121c62d1a1fc6cf9f1 (diff)
Make parameters const too.
(Following on from loplugin:passstringbyref) Change-Id: I9100f51aa7420b237c84de7d36d2374ac6612d00
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
index 1ba094e0a5dd..4a882020c94c 100644
--- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
@@ -34,8 +34,8 @@ namespace skeletonmaker { namespace cpp {
void generateIncludes(std::ostream & o,
const std::set< OUString >& interfaces,
- OUString & propertyhelper, bool serviceobject,
- bool supportxcomponent)
+ const OUString & propertyhelper, const bool serviceobject,
+ const bool supportxcomponent)
{
o << "#include \"sal/config.h\"\n";
if (serviceobject) {