[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r3490: MarbleModel::whichFeatureAt() was changed in Marble trunk to (vidalia/trunk/src/vidalia/network)
Author: edmanm
Date: 2009-01-31 18:13:36 -0500 (Sat, 31 Jan 2009)
New Revision: 3490
Modified:
vidalia/trunk/src/vidalia/network/tormapwidgetpopupmenu.cpp
Log:
MarbleModel::whichFeatureAt() was changed in Marble trunk to return a
QVector<QModelIndex> rather than a QVector<QPersistentModelIndex> in
KDE Marble's r916254.
Modified: vidalia/trunk/src/vidalia/network/tormapwidgetpopupmenu.cpp
===================================================================
--- vidalia/trunk/src/vidalia/network/tormapwidgetpopupmenu.cpp 2009-01-31 23:09:05 UTC (rev 3489)
+++ vidalia/trunk/src/vidalia/network/tormapwidgetpopupmenu.cpp 2009-01-31 23:13:36 UTC (rev 3490)
@@ -55,8 +55,8 @@
void
TorMapWidgetPopupMenu::featureLeftClicked(const QPoint &pos)
{
- QVector<QPersistentModelIndex>::const_iterator it;
- QVector<QPersistentModelIndex> features = _widget->model()->whichFeatureAt(pos);
+ QVector<QModelIndex>::const_iterator it;
+ QVector<QModelIndex> features = _widget->model()->whichFeatureAt(pos);
QString name, id;
int numRelays = 0;