aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2010-10-07 14:44:51 -0300
committerLauro Neto <lauro.neto@openbossa.org>2010-10-07 15:41:55 -0300
commit8419414b80d9f933c8a3af4ee8fd0ea4aba3820b (patch)
treeff9d3893a78c507649a3a18bc8d8f3cedff5e589 /plugins
parent349bdc2bc53c36043c81222f6e83762c72a6c56f (diff)
Reorder includes to avoid _POSIX_C_SOURCE warnings
Diffstat (limited to 'plugins')
-rw-r--r--plugins/customwidget.h2
-rw-r--r--plugins/customwidgets.cpp2
-rw-r--r--plugins/customwidgets.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/customwidget.h b/plugins/customwidget.h
index 1c2047797..e4eb76d7a 100644
--- a/plugins/customwidget.h
+++ b/plugins/customwidget.h
@@ -23,9 +23,9 @@
#ifndef _PY_CUSTOM_WIDGET_H_
#define _PY_CUSTOM_WIDGET_H_
+#include <shiboken.h>
#include <QtDesigner/QtDesigner>
#include <QDesignerCustomWidgetInterface>
-#include <shiboken.h>
struct PyCustomWidgetPrivate;
diff --git a/plugins/customwidgets.cpp b/plugins/customwidgets.cpp
index ac948e6bc..c92b95c43 100644
--- a/plugins/customwidgets.cpp
+++ b/plugins/customwidgets.cpp
@@ -20,8 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include "customwidgets.h"
#include "customwidget.h"
+#include "customwidgets.h"
#include <shiboken.h>
diff --git a/plugins/customwidgets.h b/plugins/customwidgets.h
index 9a8428b01..3cb0d2a9b 100644
--- a/plugins/customwidgets.h
+++ b/plugins/customwidgets.h
@@ -23,12 +23,12 @@
#ifndef _PY_CUSTOM_WIDGETS_H_
#define _PY_CUSTOM_WIDGETS_H_
+#include <shiboken.h>
#include <customwidget.h>
#include <QtDesigner/QtDesigner>
#include <QtPlugin>
#include <QDesignerCustomWidgetInterface>
-#include <shiboken.h>
struct PyCustomWidgetsPrivate;