diff options
author | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-07-20 14:28:00 (GMT) |
---|---|---|
committer | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-07-20 14:28:29 (GMT) |
commit | c1ae1c566bc78faae2c7861c4c6c0a7a341d034f (patch) | |
tree | b3ef83df7a4e44d382f17cfd312639ac312748c9 /src | |
parent | bf305bc2e488ad4f08c49767246f31a81218991e (diff) | |
download | Qt-c1ae1c566bc78faae2c7861c4c6c0a7a341d034f.zip Qt-c1ae1c566bc78faae2c7861c4c6c0a7a341d034f.tar.gz Qt-c1ae1c566bc78faae2c7861c4c6c0a7a341d034f.tar.bz2 |
Fixed includes in the gestures public headers.
Reviewed-by: trustme
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qgesture.h | 12 | ||||
-rw-r--r-- | src/gui/kernel/qstandardgestures.h | 7 |
2 files changed, 9 insertions, 10 deletions
diff --git a/src/gui/kernel/qgesture.h b/src/gui/kernel/qgesture.h index cc46916..1cd9cae 100644 --- a/src/gui/kernel/qgesture.h +++ b/src/gui/kernel/qgesture.h @@ -42,12 +42,12 @@ #ifndef QGESTURE_H #define QGESTURE_H -#include "qobject.h" -#include "qlist.h" -#include "qdatetime.h" -#include "qpoint.h" -#include "qrect.h" -#include "qmetatype.h" +#include <QtCore/qobject.h> +#include <QtCore/qlist.h> +#include <QtCore/qdatetime.h> +#include <QtCore/qpoint.h> +#include <QtCore/qrect.h> +#include <QtCore/qmetatype.h> QT_BEGIN_HEADER diff --git a/src/gui/kernel/qstandardgestures.h b/src/gui/kernel/qstandardgestures.h index db96ef6..2234702 100644 --- a/src/gui/kernel/qstandardgestures.h +++ b/src/gui/kernel/qstandardgestures.h @@ -42,11 +42,10 @@ #ifndef QSTANDARDGESTURES_H #define QSTANDARDGESTURES_H -#include "qevent.h" -#include "qbasictimer.h" -#include "qdebug.h" +#include <QtGui/qevent.h> +#include <QtCore/qbasictimer.h> -#include "qgesture.h" +#include <QtGui/qgesture.h> QT_BEGIN_HEADER |