aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-05-22 18:18:46 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-26 14:58:08 +0200
commit8b76df0fbc63466083ffc5e9e0c1a43d5ef2289a (patch)
tree6ae64d791fb6c4728fdfaa1aa92ef05c5ac3e910 /tools
parentb970267ea4c182b4627e95024d7b4891141019ed (diff)
fix include style
so it builds without . in includepath Change-Id: I5815c636dfcc3d45fad70321a0aab09f5295ca8d Reviewed-by: Alan Alpert <alan.alpert@nokia.com> Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/easingcurveeditor/main.cpp4
-rw-r--r--tools/easingcurveeditor/splineeditor.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/easingcurveeditor/main.cpp b/tools/easingcurveeditor/main.cpp
index 05e8ace53a..eace1249a7 100644
--- a/tools/easingcurveeditor/main.cpp
+++ b/tools/easingcurveeditor/main.cpp
@@ -39,9 +39,9 @@
**
****************************************************************************/
-#include <QApplication>
-#include <mainwindow.h>
+#include "mainwindow.h"
+#include <QApplication>
int main(int argc, char ** argv)
{
diff --git a/tools/easingcurveeditor/splineeditor.cpp b/tools/easingcurveeditor/splineeditor.cpp
index d4408521a8..7216e2acce 100644
--- a/tools/easingcurveeditor/splineeditor.cpp
+++ b/tools/easingcurveeditor/splineeditor.cpp
@@ -40,13 +40,13 @@
****************************************************************************/
#include "splineeditor.h"
+#include "segmentproperties.h"
#include <QPainter>
#include <QMouseEvent>
#include <QContextMenuEvent>
#include <QDebug>
#include <QApplication>
-#include <segmentproperties.h>
const int canvasWidth = 640;
const int canvasHeight = 320;