forked from organicmaps/organicmaps
[desktop] Show types and address for Right Button Click.
This commit is contained in:
parent
0120c134a6
commit
ddcc64d65f
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue