1
0
mirror of git://projects.qi-hardware.com/nanomap.git synced 2025-04-21 12:27:27 +03:00

Revert "first try to fix building with OpenWRT toolchain that does not include QtCore and QtGui in the include path"

This reverts commit da88ec21cd.

This was not the right solution
This commit is contained in:
Niels
2010-11-17 22:05:12 +01:00
parent 88239a2deb
commit f1a2430393
16 changed files with 39 additions and 39 deletions

View File

@@ -18,14 +18,14 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
*/
#include "gpsgridclient.h"
#include <QtCore/QtDebug>
#include <QtCore/QHash>
#include <QtDebug>
#include <QHash>
#include <algorithm>
#include "utils/qthelpers.h"
#ifndef NOGUI
#include <QtGui/QInputDialog>
#include <QInputDialog>
#endif
#include <QtCore/QSettings>
#include <QSettings>
GPSGridClient::GPSGridClient()
{

View File

@@ -20,12 +20,12 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#ifndef GPSGRIDCLIENT_H
#define GPSGRIDCLIENT_H
#include <QtCore/QObject>
#include <QtCore/QFile>
#include <QObject>
#include <QFile>
#include "interfaces/igpslookup.h"
#include "cell.h"
#include "table.h"
#include <QtCore/QCache>
#include <QCache>
class GPSGridClient : public QObject, public IGPSLookup
{

View File

@@ -20,12 +20,12 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#ifndef TABLE_H
#define TABLE_H
#include <QtCore/QtGlobal>
#include <QtCore/QCache>
#include <QtCore/QFile>
#include <QtGlobal>
#include <QCache>
#include <QFile>
#include <string.h>
#include <vector>
#include <QtCore/QtDebug>
#include <QtDebug>
namespace gg {