mirror of
git://projects.qi-hardware.com/nanomap.git
synced 2025-04-21 12:27:27 +03:00
first try to fix building with OpenWRT toolchain that does not include QtCore and QtGui in the include path
This commit is contained in:
@@ -20,7 +20,7 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef TRIE_H
|
||||
#define TRIE_H
|
||||
|
||||
#include <QString>
|
||||
#include <QtCore/QString>
|
||||
#include <vector>
|
||||
#include "utils/coordinates.h"
|
||||
#include "utils/bithelpers.h"
|
||||
|
||||
@@ -23,10 +23,10 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include "unicodetournamenttrieclient.h"
|
||||
#include "utils/qthelpers.h"
|
||||
#include <QtDebug>
|
||||
#include <QtCore/QtDebug>
|
||||
#include <algorithm>
|
||||
#ifndef NOGUI
|
||||
#include <QMessageBox>
|
||||
#include <QtGui/QMessageBox>
|
||||
#endif
|
||||
|
||||
UnicodeTournamentTrieClient::UnicodeTournamentTrieClient()
|
||||
|
||||
@@ -20,9 +20,9 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef UNICODETOURNAMENTTRIECLIENT_H
|
||||
#define UNICODETOURNAMENTTRIECLIENT_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QtPlugin>
|
||||
#include <QFile>
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QtPlugin>
|
||||
#include <QtCore/QFile>
|
||||
#include "interfaces/iaddresslookup.h"
|
||||
#include "trie.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user