[win] Fixed compilation errors

This commit is contained in:
Alex Zolotarev 2011-04-25 05:04:53 +02:00 committed by Alex Zolotarev
parent 806b3c3aa8
commit c2e6ae1ed3
6 changed files with 33 additions and 11 deletions

View file

@ -1,5 +1,7 @@
#pragma once
#include "base.hpp"
#define BOOST_DATE_TIME_NO_LIB
#include <boost/date_time/posix_time/posix_time.hpp>
namespace my

View file

@ -10,8 +10,11 @@ include($$ROOT_DIR/common.pri)
QT *= core
win32-g++ {
LIBS += -lpthread
win32 {
LIBS += -lShell32
win32-g++ {
LIBS += -lpthread
}
}
HEADERS += \

View file

@ -13,7 +13,10 @@ include($$ROOT_DIR/common.pri)
QT *= core network
win32 {
LIBS += -lShell32 -lpthread
LIBS += -lShell32
win32-g++ {
LIBS += -lpthread
}
}
SOURCES += \

View file

@ -35,8 +35,6 @@ HEADERS += \
mac|iphone* {
OBJECTIVE_SOURCES += apple_location_service.mm
LIBS += -framework CoreLocation -framework Foundation
}
win {
SOURCES += windows_location_service.cpp
} else {
SOURCES += qt_location_service.cpp
}

View file

@ -2,10 +2,10 @@
using namespace location;
class WindowsLocationService : public LocationService
class QtLocationService : public LocationService
{
public:
virtual void StartUpdate(bool useAccurateMode)
virtual void StartUpdate(bool /*useAccurateMode*/)
{
// @TODO
}
@ -18,6 +18,6 @@ public:
extern "C" location::LocationService & GetLocationService()
{
static WindowsLocationService ls;
static QtLocationService ls;
return ls;
}

View file

@ -29,6 +29,22 @@
#define IDM_ABOUT_DIALOG 1001
#ifdef DEBUG // code removed for desktop releases
#include "update_dialog.hpp"
#include "searchwindow.hpp"
#include "classificator_tree.hpp"
#include "preferences_dialog.hpp"
#include "info_dialog.hpp"
#include "guide_page.hpp"
#include "../indexer/classificator.hpp"
#include <QtCore/QFile>
#define IDM_PREFERENCES_DIALOG 1002
#endif // DEBUG
namespace qt
{
@ -71,7 +87,7 @@ MainWindow::MainWindow()
item.dwTypeData = const_cast<char *>(prefsStr.data());
item.cch = prefsStr.size();
::InsertMenuItemA(menu, ::GetMenuItemCount(menu) - 1, TRUE, &item);
#endif DEBUG
#endif // DEBUG
item.wID = IDM_ABOUT_DIALOG;
QByteArray const aboutStr = tr("About MapsWithMe...").toLocal8Bit();
item.dwTypeData = const_cast<char *>(aboutStr.data());