[desktop] Show types and address for Right Button Click.

This commit is contained in:
vng 2012-04-06 15:33:41 +03:00 committed by Alex Zolotarev
parent 0120c134a6
commit ddcc64d65f

View file

@ -299,7 +299,7 @@ namespace qt
void add_string(QMenu & menu, string const & s)
{
menu.addAction(QString::fromUtf8(s.c_str()));
(void)menu.addAction(QString::fromUtf8(s.c_str()));
}
}
@ -332,13 +332,13 @@ namespace qt
QPoint const & pt = e->pos();
QMenu menu;
/*
vector<string> types;
m_framework->GetFeatureTypes(m2::PointD(pt.x(), pt.y()), types);
for (size_t i = 0; i < types.size(); ++i)
add_string(menu, types[i]);
*/
(void)menu.addSeparator();
Framework::AddressInfo info;
m_framework->GetAddressInfo(m2::PointD(pt.x(), pt.y()), info);