summaryrefslogtreecommitdiffstats
path: root/parser
diff options
context:
space:
mode:
authorTeemu Kaukoranta <[email protected]>2013-05-22 10:41:51 +0300
committerSergio Ahumada <[email protected]>2013-05-23 11:19:07 +0200
commit25b23b4f039650c6e5d64592e6e7210719e52097 (patch)
treeaa8d9480ad901ab16a9017f0e5a04c0b4d03e230 /parser
parent744d018dd857543f93f3961cf9e7f70adcc7ce65 (diff)
Replaced Nokia copyrights in headerHEADdev4.8
Replaced old Nokia copyrights with Digia copyrights. Removed "All rights reserved" strings without leading copyrights were removed (for example, 'Copyright SomeCompany, all rights reserved remain untouched). Did NOT touch contact details, will change them later. Excluded folders that have '3rdparty' in path. Used command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*' {} \; | tee >(xargs sed -i -r '1,10 s/([ \t#*]*)(.*Copyright.*Nokia.*)/ \1Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I') >(xargs sed -i -r '1,10 s/(^[ \t#*]*)(all rights reserved.*)/\1/I') This excludes binary files and retains whitespace and #* characters in the beginning of the edited lines. Change-Id: I9b960d54cfe46a85be86b524e95e3ee875933fb6 Reviewed-by: Sergio Ahumada <[email protected]> Reviewed-by: Janne Anttila <[email protected]>
Diffstat (limited to 'parser')
-rw-r--r--parser/ast.cpp2
-rw-r--r--parser/ast.h2
-rw-r--r--parser/binder.cpp2
-rw-r--r--parser/binder.h2
-rw-r--r--parser/class_compiler.cpp2
-rw-r--r--parser/class_compiler.h2
-rw-r--r--parser/codemodel.cpp2
-rw-r--r--parser/codemodel.h2
-rw-r--r--parser/codemodel_finder.cpp2
-rw-r--r--parser/codemodel_finder.h2
-rw-r--r--parser/codemodel_fwd.h2
-rw-r--r--parser/codemodel_pointer.h2
-rw-r--r--parser/compiler_utils.cpp2
-rw-r--r--parser/compiler_utils.h2
-rw-r--r--parser/control.cpp2
-rw-r--r--parser/control.h2
-rw-r--r--parser/declarator_compiler.cpp2
-rw-r--r--parser/declarator_compiler.h2
-rw-r--r--parser/default_visitor.cpp2
-rw-r--r--parser/default_visitor.h2
-rw-r--r--parser/dumptree.cpp2
-rw-r--r--parser/dumptree.h2
-rw-r--r--parser/lexer.cpp2
-rw-r--r--parser/lexer.h2
-rw-r--r--parser/list.cpp2
-rw-r--r--parser/list.h2
-rw-r--r--parser/name_compiler.cpp2
-rw-r--r--parser/name_compiler.h2
-rw-r--r--parser/parser.cpp2
-rw-r--r--parser/parser.h2
-rw-r--r--parser/rpp-allocator.h2
-rw-r--r--parser/rpp/builtin-macros.cpp2
-rw-r--r--parser/rpp/pp-cctype.h2
-rw-r--r--parser/rpp/pp-engine-bits.h2
-rw-r--r--parser/rpp/pp-engine.h2
-rw-r--r--parser/rpp/pp-environment.h2
-rw-r--r--parser/rpp/pp-fwd.h2
-rw-r--r--parser/rpp/pp-internal.h2
-rw-r--r--parser/rpp/pp-iterator.h2
-rw-r--r--parser/rpp/pp-macro-expander.h2
-rw-r--r--parser/rpp/pp-macro.h2
-rw-r--r--parser/rpp/pp-scanner.h2
-rw-r--r--parser/rpp/pp-string.h2
-rw-r--r--parser/rpp/pp-symbol.h2
-rw-r--r--parser/rpp/pp.h2
-rw-r--r--parser/rpp/preprocessor.cpp2
-rw-r--r--parser/rpp/preprocessor.h2
-rw-r--r--parser/smallobject.cpp2
-rw-r--r--parser/smallobject.h2
-rw-r--r--parser/symbol.h2
-rw-r--r--parser/tokens.cpp2
-rw-r--r--parser/tokens.h2
-rw-r--r--parser/type_compiler.cpp2
-rw-r--r--parser/type_compiler.h2
-rw-r--r--parser/visitor.cpp2
-rw-r--r--parser/visitor.h2
56 files changed, 56 insertions, 56 deletions
diff --git a/parser/ast.cpp b/parser/ast.cpp
index ff5b7df..e007d0e 100644
--- a/parser/ast.cpp
+++ b/parser/ast.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/ast.h b/parser/ast.h
index d984976..d666e4f 100644
--- a/parser/ast.h
+++ b/parser/ast.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/binder.cpp b/parser/binder.cpp
index faace02..64289c5 100644
--- a/parser/binder.cpp
+++ b/parser/binder.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/binder.h b/parser/binder.h
index b4d4da6..da1b77c 100644
--- a/parser/binder.h
+++ b/parser/binder.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/class_compiler.cpp b/parser/class_compiler.cpp
index e04ffe1..49cbf91 100644
--- a/parser/class_compiler.cpp
+++ b/parser/class_compiler.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/class_compiler.h b/parser/class_compiler.h
index 69fccf7..1a4e67a 100644
--- a/parser/class_compiler.h
+++ b/parser/class_compiler.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/codemodel.cpp b/parser/codemodel.cpp
index 0cc14fc..43a8c7e 100644
--- a/parser/codemodel.cpp
+++ b/parser/codemodel.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/codemodel.h b/parser/codemodel.h
index f87f57a..3b3571f 100644
--- a/parser/codemodel.h
+++ b/parser/codemodel.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/codemodel_finder.cpp b/parser/codemodel_finder.cpp
index 866ea1c..4f29b3a 100644
--- a/parser/codemodel_finder.cpp
+++ b/parser/codemodel_finder.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/codemodel_finder.h b/parser/codemodel_finder.h
index ac1b5b0..4cde648 100644
--- a/parser/codemodel_finder.h
+++ b/parser/codemodel_finder.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/codemodel_fwd.h b/parser/codemodel_fwd.h
index 9640590..bb1c37f 100644
--- a/parser/codemodel_fwd.h
+++ b/parser/codemodel_fwd.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/codemodel_pointer.h b/parser/codemodel_pointer.h
index 2c728f3..2c22f7a 100644
--- a/parser/codemodel_pointer.h
+++ b/parser/codemodel_pointer.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2006 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/compiler_utils.cpp b/parser/compiler_utils.cpp
index 4962414..3034ca5 100644
--- a/parser/compiler_utils.cpp
+++ b/parser/compiler_utils.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/compiler_utils.h b/parser/compiler_utils.h
index fdd96f1..10ba1a8 100644
--- a/parser/compiler_utils.h
+++ b/parser/compiler_utils.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/control.cpp b/parser/control.cpp
index 9615deb..7bc8780 100644
--- a/parser/control.cpp
+++ b/parser/control.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/control.h b/parser/control.h
index 533db91..1e8dcf9 100644
--- a/parser/control.h
+++ b/parser/control.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/declarator_compiler.cpp b/parser/declarator_compiler.cpp
index 255bfcd..2beef6d 100644
--- a/parser/declarator_compiler.cpp
+++ b/parser/declarator_compiler.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/declarator_compiler.h b/parser/declarator_compiler.h
index 70a65b0..e0bfd9d 100644
--- a/parser/declarator_compiler.h
+++ b/parser/declarator_compiler.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/default_visitor.cpp b/parser/default_visitor.cpp
index 07ab968..e9272be 100644
--- a/parser/default_visitor.cpp
+++ b/parser/default_visitor.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/default_visitor.h b/parser/default_visitor.h
index ec1caf3..2a892a9 100644
--- a/parser/default_visitor.h
+++ b/parser/default_visitor.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/dumptree.cpp b/parser/dumptree.cpp
index 1514b0f..d65b232 100644
--- a/parser/dumptree.cpp
+++ b/parser/dumptree.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/dumptree.h b/parser/dumptree.h
index cfc55e2..4e6a721 100644
--- a/parser/dumptree.h
+++ b/parser/dumptree.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/lexer.cpp b/parser/lexer.cpp
index 2abb540..0d1269e 100644
--- a/parser/lexer.cpp
+++ b/parser/lexer.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/lexer.h b/parser/lexer.h
index 8748053..173ad80 100644
--- a/parser/lexer.h
+++ b/parser/lexer.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/list.cpp b/parser/list.cpp
index 7482b73..b2f5cfe 100644
--- a/parser/list.cpp
+++ b/parser/list.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/list.h b/parser/list.h
index fe0e627..cc481c0 100644
--- a/parser/list.h
+++ b/parser/list.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/name_compiler.cpp b/parser/name_compiler.cpp
index 4dbd516..52e783a 100644
--- a/parser/name_compiler.cpp
+++ b/parser/name_compiler.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/name_compiler.h b/parser/name_compiler.h
index 66cabac..1acd0b4 100644
--- a/parser/name_compiler.h
+++ b/parser/name_compiler.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/parser.cpp b/parser/parser.cpp
index e7d663f..c56369c 100644
--- a/parser/parser.cpp
+++ b/parser/parser.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/parser.h b/parser/parser.h
index 4b0c76c..8f31c13 100644
--- a/parser/parser.h
+++ b/parser/parser.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp-allocator.h b/parser/rpp-allocator.h
index 313895f..ecc686d 100644
--- a/parser/rpp-allocator.h
+++ b/parser/rpp-allocator.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
*
* Contact: PySide team <[email protected]>
*
diff --git a/parser/rpp/builtin-macros.cpp b/parser/rpp/builtin-macros.cpp
index 1b0fc06..3dd2fe8 100644
--- a/parser/rpp/builtin-macros.cpp
+++ b/parser/rpp/builtin-macros.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
*
* Contact: PySide team <[email protected]>
*
diff --git a/parser/rpp/pp-cctype.h b/parser/rpp/pp-cctype.h
index 5b0bf47..1675bf1 100644
--- a/parser/rpp/pp-cctype.h
+++ b/parser/rpp/pp-cctype.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-engine-bits.h b/parser/rpp/pp-engine-bits.h
index a79df43..b53607c 100644
--- a/parser/rpp/pp-engine-bits.h
+++ b/parser/rpp/pp-engine-bits.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-engine.h b/parser/rpp/pp-engine.h
index bc1d02e..079ccc8 100644
--- a/parser/rpp/pp-engine.h
+++ b/parser/rpp/pp-engine.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-environment.h b/parser/rpp/pp-environment.h
index be3ef38..e3b64df 100644
--- a/parser/rpp/pp-environment.h
+++ b/parser/rpp/pp-environment.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-fwd.h b/parser/rpp/pp-fwd.h
index 5b1c792..99785ec 100644
--- a/parser/rpp/pp-fwd.h
+++ b/parser/rpp/pp-fwd.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-internal.h b/parser/rpp/pp-internal.h
index 7e70810..bb892f8 100644
--- a/parser/rpp/pp-internal.h
+++ b/parser/rpp/pp-internal.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-iterator.h b/parser/rpp/pp-iterator.h
index 3e87d1c..edcb1be 100644
--- a/parser/rpp/pp-iterator.h
+++ b/parser/rpp/pp-iterator.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-macro-expander.h b/parser/rpp/pp-macro-expander.h
index fd875d9..dba9a8f 100644
--- a/parser/rpp/pp-macro-expander.h
+++ b/parser/rpp/pp-macro-expander.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-macro.h b/parser/rpp/pp-macro.h
index e633834..99b7505 100644
--- a/parser/rpp/pp-macro.h
+++ b/parser/rpp/pp-macro.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-scanner.h b/parser/rpp/pp-scanner.h
index e97b158..cdf6ca0 100644
--- a/parser/rpp/pp-scanner.h
+++ b/parser/rpp/pp-scanner.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-string.h b/parser/rpp/pp-string.h
index 31bca4f..fec17dc 100644
--- a/parser/rpp/pp-string.h
+++ b/parser/rpp/pp-string.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp-symbol.h b/parser/rpp/pp-symbol.h
index 8078aba..1e8f86c 100644
--- a/parser/rpp/pp-symbol.h
+++ b/parser/rpp/pp-symbol.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/pp.h b/parser/rpp/pp.h
index 3ff38c0..6eccb19 100644
--- a/parser/rpp/pp.h
+++ b/parser/rpp/pp.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/preprocessor.cpp b/parser/rpp/preprocessor.cpp
index 9a4f8b0..48ce87c 100644
--- a/parser/rpp/preprocessor.cpp
+++ b/parser/rpp/preprocessor.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Harald Fernengel <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/rpp/preprocessor.h b/parser/rpp/preprocessor.h
index c363ea7..8750a1b 100644
--- a/parser/rpp/preprocessor.h
+++ b/parser/rpp/preprocessor.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright 2005 Harald Fernengel <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/smallobject.cpp b/parser/smallobject.cpp
index e96d417..6b2dbe4 100644
--- a/parser/smallobject.cpp
+++ b/parser/smallobject.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/smallobject.h b/parser/smallobject.h
index a9eb499..3e3ab25 100644
--- a/parser/smallobject.h
+++ b/parser/smallobject.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/symbol.h b/parser/symbol.h
index 8e393cd..2f44a50 100644
--- a/parser/symbol.h
+++ b/parser/symbol.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/tokens.cpp b/parser/tokens.cpp
index 2e054d8..e3008de 100644
--- a/parser/tokens.cpp
+++ b/parser/tokens.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/tokens.h b/parser/tokens.h
index 257ff09..dbe612d 100644
--- a/parser/tokens.h
+++ b/parser/tokens.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/type_compiler.cpp b/parser/type_compiler.cpp
index 4bcdb27..93322bd 100644
--- a/parser/type_compiler.cpp
+++ b/parser/type_compiler.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/type_compiler.h b/parser/type_compiler.h
index 985cc8e..d737bec 100644
--- a/parser/type_compiler.h
+++ b/parser/type_compiler.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/visitor.cpp b/parser/visitor.cpp
index 7429814..3f07020 100644
--- a/parser/visitor.cpp
+++ b/parser/visitor.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>
diff --git a/parser/visitor.h b/parser/visitor.h
index 74edcca..d7f4158 100644
--- a/parser/visitor.h
+++ b/parser/visitor.h
@@ -1,7 +1,7 @@
/*
* This file is part of the API Extractor project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
* Copyright (C) 2002-2005 Roberto Raggi <[email protected]>
*
* Contact: PySide team <[email protected]>