postprocess/qa/services.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit da42d1100832aae524c2e6b0ba738623df775a3d
Author: Caolán McNamara <[email protected]>
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;
     };
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to