Fix initialization order, shuts up GCC.

This commit is contained in:
Daniel Molkentin
2009-05-12 11:45:11 +02:00
parent 3bf520375b
commit e27342c225
2 changed files with 2 additions and 1 deletions

View File

@@ -64,6 +64,7 @@ void RSSFetcher::readData(const QHttpResponseHeader &resp)
void RSSFetcher::finished(int id, bool error) void RSSFetcher::finished(int id, bool error)
{ {
Q_UNUSED(id)
m_items = 0; m_items = 0;
emit finished(error); emit finished(error);
} }

View File

@@ -64,8 +64,8 @@ private:
QHttp m_http; QHttp m_http;
int m_connectionId; int m_connectionId;
int m_maxItems;
int m_items; int m_items;
int m_maxItems;
}; };
} // namespace Internal } // namespace Internal