summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorjutaipal <juhani.taipale@digia.com>2012-12-11 09:08:36 (GMT)
committerjutaipal <juhani.taipale@digia.com>2012-12-11 09:08:36 (GMT)
commitf987a8dd52055b7d1090ec714b57b6e4acbf9c40 (patch)
tree35eec11c608f0e3baf8e06e6f96498baf83c9ed7 /examples
parent1fba98cfa3590ef742cbe082bf4478c2703ea3c5 (diff)
downloadQt-f987a8dd52055b7d1090ec714b57b6e4acbf9c40.zip
Qt-f987a8dd52055b7d1090ec714b57b6e4acbf9c40.tar.gz
Qt-f987a8dd52055b7d1090ec714b57b6e4acbf9c40.tar.bz2
Changed contact info from qt-info@nokia to qt-project.org/legal
Diffstat (limited to 'examples')
-rw-r--r--examples/tools/customtype/main.cpp2
-rw-r--r--examples/tools/customtypesending/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/tools/customtype/main.cpp b/examples/tools/customtype/main.cpp
index c7907c2..07cbd52 100644
--- a/examples/tools/customtype/main.cpp
+++ b/examples/tools/customtype/main.cpp
@@ -49,7 +49,7 @@ int main(int argc, char *argv[])
QCoreApplication app(argc, argv);
QStringList headers;
headers << "Subject: Hello World"
- << "From: qt-info@nokia.com";
+ << "From: http://www.qt-project.org/legal";
QString body = "This is a test.\r\n";
//! [printing a custom type]
diff --git a/examples/tools/customtypesending/main.cpp b/examples/tools/customtypesending/main.cpp
index e3bd62a..8bb0879 100644
--- a/examples/tools/customtypesending/main.cpp
+++ b/examples/tools/customtypesending/main.cpp
@@ -52,7 +52,7 @@ int main(int argc, char *argv[])
Window window1;
QStringList headers;
headers << "Subject: Hello World"
- << "From: qt-info@nokia.com";
+ << "From: http://www.qt-project.org/legal";
QString body = "This is a test.\r\n";
Message message(body, headers);
window1.setMessage(message);