fixed openweather search

This commit is contained in:
Simon Stürz 2014-04-13 22:53:06 +02:00
parent b088e13ea6
commit 8024b46c27
2 changed files with 1 additions and 2 deletions

View File

@ -112,7 +112,6 @@ void OpenWeatherMap::processSearchResponse(QByteArray data)
} }
qDebug() << "----------------------------------------"; qDebug() << "----------------------------------------";
emit searchResultReady(cityList); emit searchResultReady(cityList);
} }
void OpenWeatherMap::processSearchLocationResponse(QByteArray data) void OpenWeatherMap::processSearchLocationResponse(QByteArray data)

View File

@ -68,7 +68,7 @@ private:
void processWeatherResponse(QByteArray data); void processWeatherResponse(QByteArray data);
signals: signals:
void searchResultReady(const QList<QVariantMap> &cityList);
public slots: public slots:
void update(); void update();