Changed icons of location search panel and route to search result button
authorSami Rämö <sami.ramo@ixonos.com>
Wed, 1 Sep 2010 10:10:25 +0000 (13:10 +0300)
committerSami Rämö <sami.ramo@ixonos.com>
Wed, 1 Sep 2010 10:10:25 +0000 (13:10 +0300)
src/ui/locationsearchpanel.cpp
src/ui/mainwindow.cpp

index db8fbb1..df452c4 100644 (file)
@@ -85,8 +85,7 @@ LocationSearchPanel::LocationSearchPanel(QWidget *parent)
     connect(searchLocationButton, SIGNAL(clicked()),
             this, SIGNAL(requestSearchLocation()));
 
-    m_routeButton = new ImageButton(":res/images/route_to_location.png",
-                                    ":res/images/route_to_location_s.png", "", this);
+    m_routeButton = new ImageButton(":res/images/compass.png", "", "", this);
     m_routeButton->setDisabled(true);
     connect(m_routeButton, SIGNAL(clicked()),
             this, SLOT(routeToSelectedLocation()));
index fe92ae0..d6ce628 100644 (file)
@@ -347,7 +347,7 @@ void MainWindow::buildPanels()
     m_tabbedPanel = new TabbedPanel(this);
     m_tabbedPanel->addTab(m_userInfoPanel, QIcon(":/res/images/user_info.png"));
     m_tabbedPanel->addTab(m_friendsListPanel, QIcon(":/res/images/friend_list.png"));
-    m_tabbedPanel->addTab(m_locationSearchPanel, QIcon(":/res/images/search.png"));
+    m_tabbedPanel->addTab(m_locationSearchPanel, QIcon(":/res/images/compass.png"));
     m_tabbedPanel->addTab(m_routingPanel, QIcon(":/res/images/routing.png"));
 
     connect(m_mapView, SIGNAL(viewResized(QSize)),