summaryrefslogtreecommitdiffstats
path: root/demos/mobile/guitartuner/src
diff options
context:
space:
mode:
Diffstat (limited to 'demos/mobile/guitartuner/src')
-rw-r--r--demos/mobile/guitartuner/src/application.qml3
-rw-r--r--demos/mobile/guitartuner/src/constants.h3
-rw-r--r--demos/mobile/guitartuner/src/fastfouriertransformer.cpp3
-rw-r--r--demos/mobile/guitartuner/src/fastfouriertransformer.h3
-rw-r--r--demos/mobile/guitartuner/src/fftpack.c3
-rw-r--r--demos/mobile/guitartuner/src/guitartuner.cpp3
-rw-r--r--demos/mobile/guitartuner/src/guitartuner.h3
-rw-r--r--demos/mobile/guitartuner/src/guitartunerui.cpp3
-rw-r--r--demos/mobile/guitartuner/src/guitartunerui.h3
-rw-r--r--demos/mobile/guitartuner/src/main.cpp3
-rw-r--r--demos/mobile/guitartuner/src/mycomponents/Adjuster.qml3
-rw-r--r--demos/mobile/guitartuner/src/mycomponents/Meter.qml3
-rw-r--r--demos/mobile/guitartuner/src/mycomponents/NoteButtonView.qml3
-rw-r--r--demos/mobile/guitartuner/src/mycomponents/NotesModel.qml3
-rw-r--r--demos/mobile/guitartuner/src/mycomponents/ToggleButton.qml3
-rw-r--r--demos/mobile/guitartuner/src/mycomponents/adjustbars.js3
-rw-r--r--demos/mobile/guitartuner/src/voiceanalyzer.cpp3
-rw-r--r--demos/mobile/guitartuner/src/voiceanalyzer.h3
-rw-r--r--demos/mobile/guitartuner/src/voicegenerator.cpp3
-rw-r--r--demos/mobile/guitartuner/src/voicegenerator.h3
20 files changed, 20 insertions, 40 deletions
diff --git a/demos/mobile/guitartuner/src/application.qml b/demos/mobile/guitartuner/src/application.qml
index 7a078451..85ba397c 100644
--- a/demos/mobile/guitartuner/src/application.qml
+++ b/demos/mobile/guitartuner/src/application.qml
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/constants.h b/demos/mobile/guitartuner/src/constants.h
index 10ac0073..066b1791 100644
--- a/demos/mobile/guitartuner/src/constants.h
+++ b/demos/mobile/guitartuner/src/constants.h
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/fastfouriertransformer.cpp b/demos/mobile/guitartuner/src/fastfouriertransformer.cpp
index 684483fc..05eaf57f 100644
--- a/demos/mobile/guitartuner/src/fastfouriertransformer.cpp
+++ b/demos/mobile/guitartuner/src/fastfouriertransformer.cpp
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/fastfouriertransformer.h b/demos/mobile/guitartuner/src/fastfouriertransformer.h
index 8b5f272b..7ca72075 100644
--- a/demos/mobile/guitartuner/src/fastfouriertransformer.h
+++ b/demos/mobile/guitartuner/src/fastfouriertransformer.h
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/fftpack.c b/demos/mobile/guitartuner/src/fftpack.c
index 84e72525..70fbbdd0 100644
--- a/demos/mobile/guitartuner/src/fftpack.c
+++ b/demos/mobile/guitartuner/src/fftpack.c
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the QtDeclarative module of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/guitartuner.cpp b/demos/mobile/guitartuner/src/guitartuner.cpp
index 8622e4bd..a2832217 100644
--- a/demos/mobile/guitartuner/src/guitartuner.cpp
+++ b/demos/mobile/guitartuner/src/guitartuner.cpp
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/guitartuner.h b/demos/mobile/guitartuner/src/guitartuner.h
index 1e1d6edb..a0250f79 100644
--- a/demos/mobile/guitartuner/src/guitartuner.h
+++ b/demos/mobile/guitartuner/src/guitartuner.h
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/guitartunerui.cpp b/demos/mobile/guitartuner/src/guitartunerui.cpp
index 4bbfaa70..c87ae7f6 100644
--- a/demos/mobile/guitartuner/src/guitartunerui.cpp
+++ b/demos/mobile/guitartuner/src/guitartunerui.cpp
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/guitartunerui.h b/demos/mobile/guitartuner/src/guitartunerui.h
index 0a800e6d..4040d6cc 100644
--- a/demos/mobile/guitartuner/src/guitartunerui.h
+++ b/demos/mobile/guitartuner/src/guitartunerui.h
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/main.cpp b/demos/mobile/guitartuner/src/main.cpp
index 140c74cc..83ba5e67 100644
--- a/demos/mobile/guitartuner/src/main.cpp
+++ b/demos/mobile/guitartuner/src/main.cpp
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/mycomponents/Adjuster.qml b/demos/mobile/guitartuner/src/mycomponents/Adjuster.qml
index d9147599..9fa2b5e6 100644
--- a/demos/mobile/guitartuner/src/mycomponents/Adjuster.qml
+++ b/demos/mobile/guitartuner/src/mycomponents/Adjuster.qml
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/mycomponents/Meter.qml b/demos/mobile/guitartuner/src/mycomponents/Meter.qml
index 2e46edd6..cfb764ed 100644
--- a/demos/mobile/guitartuner/src/mycomponents/Meter.qml
+++ b/demos/mobile/guitartuner/src/mycomponents/Meter.qml
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/mycomponents/NoteButtonView.qml b/demos/mobile/guitartuner/src/mycomponents/NoteButtonView.qml
index ed49a902..45e5b259 100644
--- a/demos/mobile/guitartuner/src/mycomponents/NoteButtonView.qml
+++ b/demos/mobile/guitartuner/src/mycomponents/NoteButtonView.qml
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/mycomponents/NotesModel.qml b/demos/mobile/guitartuner/src/mycomponents/NotesModel.qml
index d5290c12..e69fa847 100644
--- a/demos/mobile/guitartuner/src/mycomponents/NotesModel.qml
+++ b/demos/mobile/guitartuner/src/mycomponents/NotesModel.qml
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/mycomponents/ToggleButton.qml b/demos/mobile/guitartuner/src/mycomponents/ToggleButton.qml
index f717b960..956a0daf 100644
--- a/demos/mobile/guitartuner/src/mycomponents/ToggleButton.qml
+++ b/demos/mobile/guitartuner/src/mycomponents/ToggleButton.qml
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/mycomponents/adjustbars.js b/demos/mobile/guitartuner/src/mycomponents/adjustbars.js
index e4710ce7..053c10e0 100644
--- a/demos/mobile/guitartuner/src/mycomponents/adjustbars.js
+++ b/demos/mobile/guitartuner/src/mycomponents/adjustbars.js
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the QtDeclarative module of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/voiceanalyzer.cpp b/demos/mobile/guitartuner/src/voiceanalyzer.cpp
index 12d7a2bf..5913bf79 100644
--- a/demos/mobile/guitartuner/src/voiceanalyzer.cpp
+++ b/demos/mobile/guitartuner/src/voiceanalyzer.cpp
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/voiceanalyzer.h b/demos/mobile/guitartuner/src/voiceanalyzer.h
index b53d0ecc..51a69021 100644
--- a/demos/mobile/guitartuner/src/voiceanalyzer.h
+++ b/demos/mobile/guitartuner/src/voiceanalyzer.h
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/voicegenerator.cpp b/demos/mobile/guitartuner/src/voicegenerator.cpp
index 0b278000..74e31925 100644
--- a/demos/mobile/guitartuner/src/voicegenerator.cpp
+++ b/demos/mobile/guitartuner/src/voicegenerator.cpp
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
diff --git a/demos/mobile/guitartuner/src/voicegenerator.h b/demos/mobile/guitartuner/src/voicegenerator.h
index ab5a86e2..5c048d95 100644
--- a/demos/mobile/guitartuner/src/voicegenerator.h
+++ b/demos/mobile/guitartuner/src/voicegenerator.h
@@ -1,8 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: http://www.qt-project.org/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**