本文整理汇总了C++中ContentFetcher::error方法的典型用法代码示例。如果您正苦于以下问题:C++ ContentFetcher::error方法的具体用法?C++ ContentFetcher::error怎么用?C++ ContentFetcher::error使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ContentFetcher
的用法示例。
在下文中一共展示了ContentFetcher::error方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: raw
void
Reader::updateFinished( int /*id*/, bool error )
{
DEBUG_BLOCK
ContentFetcher* http = (ContentFetcher*) sender();
disconnect( http, SIGNAL( requestFinished( int, bool ) ), this, SLOT( updateFinished( int, bool ) ) );
if( error )
{
http->deleteLater();
warning() << "what is going on here? " << http->error();
return;
}
QDataStream raw( http->results() );
Map updateResults = parse( raw, 0, true );
if( updateResults["mupd"].toList().isEmpty() )
return; //error
if( updateResults["mupd"].toList()[0].toMap()["musr"].toList().isEmpty() )
return; //error
m_loginString = m_loginString + "&revision-number=" +
QString::number( updateResults["mupd"].toList()[0].toMap()["musr"].toList()[0].toInt() );
connect( http, SIGNAL( requestFinished( int, bool ) ), this, SLOT( databaseIdFinished( int, bool ) ) );
http->getDaap( "/databases?" + m_loginString );
}