Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-gui
Commits
95b33864
Commit
95b33864
authored
Feb 12, 2018
by
Joseph Mirabel
Committed by
Joseph Mirabel
Feb 12, 2018
Browse files
Fix compilation with Qt4
parent
f514fb50
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/hppwidgetsplugin/pathplayer.cc
View file @
95b33864
...
...
@@ -7,7 +7,11 @@
#include <QPushButton>
#include <QSpinBox>
#include <QSlider>
#include <QtConcurrent>
#if (QT_VERSION < QT_VERSION_CHECK(5,0,0))
# include <QtCore>
#else
# include <QtConcurrent>
#endif
#include <hpp/corbaserver/common.hh>
#include <hpp/corbaserver/client.hh>
...
...
plugins/hppwidgetsplugin/solverwidget.cc
View file @
95b33864
...
...
@@ -7,7 +7,11 @@
#include <QFileDialog>
#include <QListWidget>
#include <QMessageBox>
#include <QtConcurrent>
#if (QT_VERSION < QT_VERSION_CHECK(5,0,0))
# include <QtCore>
#else
# include <QtConcurrent>
#endif
#include <hpp/corbaserver/client.hh>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment