[Libreoffice-commits] core.git: postprocess/qa
Caolán McNamara
caolanm at redhat.com
Tue Mar 24 14:05:04 PDT 2015
postprocess/qa/services.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit da42d1100832aae524c2e6b0ba738623df775a3d
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Mar 24 21:04:31 2015 +0000
give this a copy ctor
Change-Id: I144679e93e61f1bc19319ebf8893529c164ae0ee
diff --git a/postprocess/qa/services.cxx b/postprocess/qa/services.cxx
index c6ed5dc..1183cee 100644
--- a/postprocess/qa/services.cxx
+++ b/postprocess/qa/services.cxx
@@ -146,6 +146,10 @@ void Test::test() {
serviceName(theServiceName),
defaultConstructor(theDefaultConstructor)
{}
+ Constructor(Constructor const &other):
+ serviceName(other.serviceName),
+ defaultConstructor(other.defaultConstructor)
+ {}
OUString const serviceName;
bool const defaultConstructor;
};
More information about the Libreoffice-commits
mailing list