From d69346b170a627b039ac1309d427aa3ef764f628 Mon Sep 17 00:00:00 2001 From: Andrzej Hunt Date: Tue, 18 Mar 2014 19:18:02 +0000 Subject: Make parameters const too. (Following on from loplugin:passstringbyref) Change-Id: I9100f51aa7420b237c84de7d36d2374ac6612d00 --- unodevtools/source/skeletonmaker/cppcompskeleton.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unodevtools/source') 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) { -- cgit