1
0
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:
Niels
2010-11-17 14:11:42 +01:00
parent bdecafa5bd
commit da88ec21cd
16 changed files with 39 additions and 39 deletions

View File

@@ -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"

View File

@@ -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()

View File

@@ -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"