From 31925ef61c72b3675071924a28b0f841d97b93ae Mon Sep 17 00:00:00 2001 From: Joseph Mirabel <jmirabel@laas.fr> Date: Thu, 15 Mar 2018 11:25:05 +0100 Subject: [PATCH] Fix includes of PythonQt headers --- src/gui/python-decorator.hh | 2 +- src/gui/pythonwidget.cc | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/gui/python-decorator.hh b/src/gui/python-decorator.hh index 35ff55e..f4e727a 100644 --- a/src/gui/python-decorator.hh +++ b/src/gui/python-decorator.hh @@ -1,7 +1,7 @@ #ifndef GEPETTO_GUI_PYTHON_DECORATOR_HH #define GEPETTO_GUI_PYTHON_DECORATOR_HH -#include <PythonQt/PythonQt.h> +#include <PythonQt.h> #include <gepetto/gui/mainwindow.hh> #include <gepetto/gui/osgwidget.hh> diff --git a/src/gui/pythonwidget.cc b/src/gui/pythonwidget.cc index 791ac0f..1ab934e 100644 --- a/src/gui/pythonwidget.cc +++ b/src/gui/pythonwidget.cc @@ -2,11 +2,11 @@ #include <QAction> #include <QFileDialog> -#include <PythonQt/PythonQt.h> -#include <PythonQt/PythonQt_QtAll.h> -#include <PythonQt/gui/PythonQtScriptingConsole.h> -#include <PythonQt/PythonQtClassInfo.h> -#include <PythonQt/PythonQt_QtBindings.h> +#include <PythonQt.h> +#include <PythonQt_QtAll.h> +#include <gui/PythonQtScriptingConsole.h> +#include <PythonQtClassInfo.h> +#include <PythonQt_QtBindings.h> #include "gepetto/gui/osgwidget.hh" #include "gepetto/gui/mainwindow.hh" -- GitLab