aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/generichighlighter
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@nokia.com>2012-07-19 12:26:56 +0200
committerEike Ziller <eike.ziller@nokia.com>2012-07-19 13:23:21 +0200
commite0e8cf3ada52fcd3fcb610ce993cba7b7edc5985 (patch)
tree3d18e89498509a24821cd496a5f0d533dd341802 /src/plugins/texteditor/generichighlighter
parent93cf0f126efccb3a63a8d56c3898897868721e8c (diff)
Contact -> qt-project.org
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/plugins/texteditor/generichighlighter')
-rw-r--r--src/plugins/texteditor/generichighlighter/context.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/context.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/definitiondownloader.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/definitiondownloader.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/dynamicrule.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/dynamicrule.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightdefinition.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightdefinition.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlighter.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlighter.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlighterexception.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightersettings.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightersettings.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightersettingspage.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/includerulesinstruction.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/itemdata.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/itemdata.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/keywordlist.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/keywordlist.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/manager.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/manager.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/progressdata.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/progressdata.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/reuse.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/rule.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/rule.h4
-rw-r--r--src/plugins/texteditor/generichighlighter/specificrules.cpp4
-rw-r--r--src/plugins/texteditor/generichighlighter/specificrules.h4
36 files changed, 36 insertions, 108 deletions
diff --git a/src/plugins/texteditor/generichighlighter/context.cpp b/src/plugins/texteditor/generichighlighter/context.cpp
index a904c14795..2f32df3892 100644
--- a/src/plugins/texteditor/generichighlighter/context.cpp
+++ b/src/plugins/texteditor/generichighlighter/context.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/context.h b/src/plugins/texteditor/generichighlighter/context.h
index 3d5a082354..7f2935d1ce 100644
--- a/src/plugins/texteditor/generichighlighter/context.h
+++ b/src/plugins/texteditor/generichighlighter/context.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp b/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp
index e5b3bb8da2..2defffbc7b 100644
--- a/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp
+++ b/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/definitiondownloader.h b/src/plugins/texteditor/generichighlighter/definitiondownloader.h
index d387bfb113..1965dca22c 100644
--- a/src/plugins/texteditor/generichighlighter/definitiondownloader.h
+++ b/src/plugins/texteditor/generichighlighter/definitiondownloader.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/dynamicrule.cpp b/src/plugins/texteditor/generichighlighter/dynamicrule.cpp
index 2f69809fdc..e9caf9c396 100644
--- a/src/plugins/texteditor/generichighlighter/dynamicrule.cpp
+++ b/src/plugins/texteditor/generichighlighter/dynamicrule.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/dynamicrule.h b/src/plugins/texteditor/generichighlighter/dynamicrule.h
index a5920f2076..74d3bd360c 100644
--- a/src/plugins/texteditor/generichighlighter/dynamicrule.h
+++ b/src/plugins/texteditor/generichighlighter/dynamicrule.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp b/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp
index 744744a71d..5daaaf4844 100644
--- a/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp
+++ b/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinition.h b/src/plugins/texteditor/generichighlighter/highlightdefinition.h
index b178a2e476..812f682280 100644
--- a/src/plugins/texteditor/generichighlighter/highlightdefinition.h
+++ b/src/plugins/texteditor/generichighlighter/highlightdefinition.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp
index a259132291..fd09fd3733 100644
--- a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp
+++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h
index fa771cf0e6..21b94744a8 100644
--- a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h
+++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.cpp b/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.cpp
index 93a91d8b8b..58d7990afb 100644
--- a/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.cpp
+++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h b/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h
index 055dc6eb01..81c04044ad 100644
--- a/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h
+++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlighter.cpp b/src/plugins/texteditor/generichighlighter/highlighter.cpp
index 155948f183..c514f18a20 100644
--- a/src/plugins/texteditor/generichighlighter/highlighter.cpp
+++ b/src/plugins/texteditor/generichighlighter/highlighter.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlighter.h b/src/plugins/texteditor/generichighlighter/highlighter.h
index e4e3299e5f..29e3428b8e 100644
--- a/src/plugins/texteditor/generichighlighter/highlighter.h
+++ b/src/plugins/texteditor/generichighlighter/highlighter.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlighterexception.h b/src/plugins/texteditor/generichighlighter/highlighterexception.h
index 26fae4918e..c1f1d8302b 100644
--- a/src/plugins/texteditor/generichighlighter/highlighterexception.h
+++ b/src/plugins/texteditor/generichighlighter/highlighterexception.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightersettings.cpp b/src/plugins/texteditor/generichighlighter/highlightersettings.cpp
index ad493df814..aa2cedeb07 100644
--- a/src/plugins/texteditor/generichighlighter/highlightersettings.cpp
+++ b/src/plugins/texteditor/generichighlighter/highlightersettings.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightersettings.h b/src/plugins/texteditor/generichighlighter/highlightersettings.h
index 9bc3c1229a..c30b6d2e28 100644
--- a/src/plugins/texteditor/generichighlighter/highlightersettings.h
+++ b/src/plugins/texteditor/generichighlighter/highlightersettings.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp b/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp
index 8fafda76e6..e9bcb66eb6 100644
--- a/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp
+++ b/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/highlightersettingspage.h b/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
index 6567edae77..de97f7a7a1 100644
--- a/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
+++ b/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp b/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp
index d045f3c44a..302c15d8f2 100644
--- a/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp
+++ b/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/includerulesinstruction.h b/src/plugins/texteditor/generichighlighter/includerulesinstruction.h
index e094b35974..f61aa6e1ee 100644
--- a/src/plugins/texteditor/generichighlighter/includerulesinstruction.h
+++ b/src/plugins/texteditor/generichighlighter/includerulesinstruction.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/itemdata.cpp b/src/plugins/texteditor/generichighlighter/itemdata.cpp
index 809a323fa9..d6a3579fe4 100644
--- a/src/plugins/texteditor/generichighlighter/itemdata.cpp
+++ b/src/plugins/texteditor/generichighlighter/itemdata.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/itemdata.h b/src/plugins/texteditor/generichighlighter/itemdata.h
index a7f1beab16..c05f4f89d4 100644
--- a/src/plugins/texteditor/generichighlighter/itemdata.h
+++ b/src/plugins/texteditor/generichighlighter/itemdata.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/keywordlist.cpp b/src/plugins/texteditor/generichighlighter/keywordlist.cpp
index e392c243f4..064bd5c56f 100644
--- a/src/plugins/texteditor/generichighlighter/keywordlist.cpp
+++ b/src/plugins/texteditor/generichighlighter/keywordlist.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/keywordlist.h b/src/plugins/texteditor/generichighlighter/keywordlist.h
index f7c146992f..a5ec30ec3e 100644
--- a/src/plugins/texteditor/generichighlighter/keywordlist.h
+++ b/src/plugins/texteditor/generichighlighter/keywordlist.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
index 87226c2036..97913d1cd8 100644
--- a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
+++ b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h
index 67f25d86b9..753feb5c8b 100644
--- a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h
+++ b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/manager.cpp b/src/plugins/texteditor/generichighlighter/manager.cpp
index fe6eed4b85..43aea9c16f 100644
--- a/src/plugins/texteditor/generichighlighter/manager.cpp
+++ b/src/plugins/texteditor/generichighlighter/manager.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/manager.h b/src/plugins/texteditor/generichighlighter/manager.h
index b5a84de2e9..640f7e9d74 100644
--- a/src/plugins/texteditor/generichighlighter/manager.h
+++ b/src/plugins/texteditor/generichighlighter/manager.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/progressdata.cpp b/src/plugins/texteditor/generichighlighter/progressdata.cpp
index 594678ff38..4cfc66c70a 100644
--- a/src/plugins/texteditor/generichighlighter/progressdata.cpp
+++ b/src/plugins/texteditor/generichighlighter/progressdata.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/progressdata.h b/src/plugins/texteditor/generichighlighter/progressdata.h
index 7ba53a6c6b..6b68c1d142 100644
--- a/src/plugins/texteditor/generichighlighter/progressdata.h
+++ b/src/plugins/texteditor/generichighlighter/progressdata.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/reuse.h b/src/plugins/texteditor/generichighlighter/reuse.h
index 21775ada5c..1364271131 100644
--- a/src/plugins/texteditor/generichighlighter/reuse.h
+++ b/src/plugins/texteditor/generichighlighter/reuse.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/rule.cpp b/src/plugins/texteditor/generichighlighter/rule.cpp
index 7fa1eb5caa..e878b56b3d 100644
--- a/src/plugins/texteditor/generichighlighter/rule.cpp
+++ b/src/plugins/texteditor/generichighlighter/rule.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/rule.h b/src/plugins/texteditor/generichighlighter/rule.h
index b5e7bc5e33..2cabb90281 100644
--- a/src/plugins/texteditor/generichighlighter/rule.h
+++ b/src/plugins/texteditor/generichighlighter/rule.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/specificrules.cpp b/src/plugins/texteditor/generichighlighter/specificrules.cpp
index 500dff2c0b..7b9d722f23 100644
--- a/src/plugins/texteditor/generichighlighter/specificrules.cpp
+++ b/src/plugins/texteditor/generichighlighter/specificrules.cpp
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/
diff --git a/src/plugins/texteditor/generichighlighter/specificrules.h b/src/plugins/texteditor/generichighlighter/specificrules.h
index 392f8ed9df..cf514f7de6 100644
--- a/src/plugins/texteditor/generichighlighter/specificrules.h
+++ b/src/plugins/texteditor/generichighlighter/specificrules.h
@@ -4,7 +4,7 @@
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
@@ -25,8 +25,6 @@
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
**
**************************************************************************/