summaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2012-12-02 17:24:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-03 03:47:08 +0100
commit0df026de86a885a7b0acb9138edab14db31d63f7 (patch)
treea440d39d391be75826554d039e610dd6b8b4b8ed /tests/manual
parent0d40958347ad0b60fb1ccd15ab7a59e1407e945d (diff)
Stop using the name "Trolltech" in QSettings
Also change Trolltech for QtProject in other places Task-number: QTBUG-23269 Change-Id: Ie4e344f23cab77c575562d18b481b3369ce30491 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/lance/widgets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/lance/widgets.h b/tests/manual/lance/widgets.h
index e5e21f4b35..a95658d215 100644
--- a/tests/manual/lance/widgets.h
+++ b/tests/manual/lance/widgets.h
@@ -99,7 +99,7 @@ public:
m_filename(file),
m_view_mode(RenderView)
{
- QSettings settings("Trolltech", "lance");
+ QSettings settings("QtProject", "lance");
for (int i=0; i<10; ++i) {
QPointF suggestion(100 + i * 40, 100 + 100 * qSin(i * 3.1415 / 10.0));
m_controlPoints << settings.value("cp" + QString::number(i), suggestion).toPointF();
@@ -154,7 +154,7 @@ public:
~OnScreenWidget()
{
- QSettings settings("Trolltech", "lance");
+ QSettings settings("QtProject", "lance");
for (int i=0; i<10; ++i) {
settings.setValue("cp" + QString::number(i), m_controlPoints.at(i));
}