Fixed a few merge problems
authorPekka Nissinen <pekka.nissinen@ixonos.com>
Fri, 14 May 2010 09:53:31 +0000 (12:53 +0300)
committerPekka Nissinen <pekka.nissinen@ixonos.com>
Fri, 14 May 2010 09:53:31 +0000 (12:53 +0300)
src/src.pro
src/ui/mapviewscreen.cpp

index 1196186..06b4362 100644 (file)
@@ -76,7 +76,7 @@ HEADERS += ui/mainwindow.h \
     map/friendgroupitem.h \
     map/frienditemshandler.h \
     gps/gpspositioninterface.h \
-    ui/zoombuttonpanel.h
+    ui/zoombuttonpanel.h \
     situarecommon.h
 QT += network \
     webkit
index 06c7d80..f0da52e 100644 (file)
@@ -55,9 +55,9 @@ MapViewScreen::MapViewScreen(QWidget *parent)
             m_mapEngine, SLOT(viewZoomFinished()));
 
     connect(this, SIGNAL(zoomInKeyPressed()),
-            mapEngine, SLOT(zoomIn()));
+            m_mapEngine, SLOT(zoomIn()));
     connect(this, SIGNAL(zoomOutKeyPressed()),
-            mapEngine, SLOT(zoomOut()));
+            m_mapEngine, SLOT(zoomOut()));
 
     connect(mapView, SIGNAL(viewResizedNewSize(int,int)),
             this, SLOT(drawOsmLicense(int, int)));