当前位置: 首页>>代码示例>>C++>>正文


C++ QXmlParseException类代码示例

本文整理汇总了C++中QXmlParseException的典型用法代码示例。如果您正苦于以下问题:C++ QXmlParseException类的具体用法?C++ QXmlParseException怎么用?C++ QXmlParseException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了QXmlParseException类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: kWarning

bool KWord13Parser::error(const QXmlParseException& exception)
{
    // A XML error is recoverable, so it is only a KDE warning
    kWarning(30520) << "XML parsing error: line " << exception.lineNumber()
    << " col " << exception.columnNumber() << " message: " << exception.message();
    return true;
}
开发者ID:KDE,项目名称:calligra-history,代码行数:7,代码来源:kword13parser.cpp

示例2: kError

bool KWord13Parser::fatalError(const QXmlParseException& exception)
{
    kError(30520) << "XML parsing fatal error: line " << exception.lineNumber()
    << " col " << exception.columnNumber() << " message: " << exception.message();
    // ### TODO: user message box
    return false; // Stop parsing now, we do not need further errors.
}
开发者ID:KDE,项目名称:calligra-history,代码行数:7,代码来源:kword13parser.cpp

示例3: fatalError

 // ------------------------------------------------------------------
 bool XmlHandler::fatalError(const QXmlParseException& exception)
 {
     qDebug() << "Line:"      << exception.lineNumber()
              << ", Column:"  << exception.columnNumber()
              << ", Message:" << exception.message();
     return false;
 }
开发者ID:victord1971,项目名称:gui,代码行数:8,代码来源:xmlhandler.cpp

示例4: fatalError

 bool fatalError( const QXmlParseException &exception )
 {
   debug(1,"Fatal error at line %d column %d: %s\n",
       exception.lineNumber(),exception.columnNumber(),
       exception.message().data());
   return FALSE;
 }
开发者ID:tch-opensrc,项目名称:TC72XX_LxG1.0.10mp5_OpenSrc,代码行数:7,代码来源:mainhandler.cpp

示例5: warning

 bool warning(const QXmlParseException & exception)
 {
     stream << "Warning: " << exception.message() << "\n";
     stream << "Line: "   << exception.lineNumber() << "\n";
     stream << "Column: " << exception.columnNumber() << "\n";
     return true;
 }
开发者ID:burlen,项目名称:visit_vtk_7_src,代码行数:7,代码来源:main.C

示例6: fatalError

bool KThemeManager::fatalError(const QXmlParseException & exception)
{
    kError() << "FATAL Error analizing theme: " << endl;
    kError() << "Line: " << exception.lineNumber() << " Column: " << exception.columnNumber() << " " << exception.message() << endl;

    return false;
}
开发者ID:BackupTheBerlios,项目名称:ktoon-svn,代码行数:7,代码来源:kthememanager.cpp

示例7: fatalError

bool RssReader::fatalError(const QXmlParseException &e) {
	QString fmt("<br /><b>Parse error</b> (line:%1 column:%2): %3");
	m_output.append(
		fmt.arg(e.lineNumber()).arg(e.columnNumber()).arg(e.message())
	);
	return QXmlDefaultHandler::fatalError(e);
}
开发者ID:alosarv,项目名称:hydranode,代码行数:7,代码来源:newsfeed.cpp

示例8: fatalError

 bool fatalError(const QXmlParseException & exception)
 {
     stream << "Fatal error: " << exception.message() << "\n";
     stream << "Line: "   << exception.lineNumber() << "\n";
     stream << "Column: " << exception.columnNumber() << "\n";
     return true;
 }
开发者ID:burlen,项目名称:visit_vtk_7_src,代码行数:7,代码来源:main.C

示例9: fatalError

bool AliceHandler::fatalError(const QXmlParseException &exception)
{
    std::cerr << "Parse error at line " << exception.lineNumber()
              << ", " << "column " << exception.columnNumber() << ": "
              << qPrintable(exception.message()) << std::endl;
    return false;
}
开发者ID:5544181975,项目名称:android-thomson-key-solver,代码行数:7,代码来源:alicehandler.cpp

示例10: fatalError

bool iTunesXmlHandler::fatalError(const QXmlParseException &exception) {
	_errorStr = QObject::tr("Parse error at line %1, column %2:\n%3")
				.arg(exception.lineNumber())
				.arg(exception.columnNumber())
				.arg(exception.message());
	return false;
}
开发者ID:GanAlps,项目名称:Extracting-Features-from-audio,代码行数:7,代码来源:iTunesXmlHandler.cpp

示例11: fatalError

bool RepositoryXMLHandler::fatalError(const QXmlParseException &exception)
{
    this->error = QObject::tr("XML parsing error at line %1, column %2: %3").
            arg(exception.lineNumber()).arg(exception.columnNumber()).
            arg(exception.message());
    return false;
}
开发者ID:benpope82,项目名称:npackd-cpp,代码行数:7,代码来源:repositoryxmlhandler.cpp

示例12: fatalError

bool UBRssHandler::fatalError(const QXmlParseException &exception)
{
    qWarning() << "Fatal error at line " << exception.lineNumber()
               << ", column " << exception.columnNumber() << ": "
               << exception.message() << mError;
    return false;
}
开发者ID:Vetal3000,项目名称:Sankore-3.1,代码行数:7,代码来源:UBRssHandler.cpp

示例13: fatalError

bool TanoHandlerOld::fatalError(const QXmlParseException &exception)
{
    qDebug() << QString("Parse error at line %1, column %2: %3")
                        .arg(exception.lineNumber())
                        .arg(exception.columnNumber())
                        .arg(exception.message());
    return false;
}
开发者ID:RaoulVolfoni,项目名称:tano,代码行数:8,代码来源:TanoHandlerOld.cpp

示例14: error

bool NodesSax::error(const QXmlParseException &exception)
{
    Utils::error(QObject::tr("Parse error (1) at line %1, column %2:\n%3")
                 .arg(exception.lineNumber())
                 .arg(exception.columnNumber())
                 .arg(exception.message()));
    return false;
}
开发者ID:ericsium,项目名称:qxmledit,代码行数:8,代码来源:nodessax.cpp

示例15: fatalError

bool Handler::fatalError (const QXmlParseException & exception)
{
    qWarning() << QString("Fatal error on line %1, column %2: %3").arg(
        exception.lineNumber()).arg(exception.columnNumber()).arg(
        exception.message());

    return false;
}
开发者ID:Hasimir,项目名称:PySide,代码行数:8,代码来源:handler.cpp


注:本文中的QXmlParseException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。