From 95f88ed6c58925b74e6e6c25a44e597e5be112b1 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 17 Jan 2014 20:23:46 +0100 Subject: whitespace fixes remove trailing spaces & expand tabs Change-Id: Ic958087d8c50f3c51d767f5191e54c4079cc74a2 Reviewed-by: Friedemann Kleint Reviewed-by: Oswald Buddenhagen --- .../xmlpatterns/filetree/doc/src/filetree.qdoc | 16 ++++++------ examples/xmlpatterns/filetree/filetree.cpp | 6 ++--- examples/xmlpatterns/filetree/mainwindow.cpp | 4 +-- .../xmlpatterns/filetree/queries/listCPPFiles.xq | 2 +- examples/xmlpatterns/recipes/doc/src/recipes.qdoc | 6 ++--- .../xquery/doc/src/globalVariables.qdoc | 12 ++++----- .../xmlpatterns/xquery/globalVariables/globals.cpp | 4 +-- .../xquery/globalVariables/globals.html | 2 +- .../xquery/globalVariables/reportGlobals.xq | 16 ++++++------ src/xmlpatterns/Doxyfile | 6 ++--- .../api/qabstractxmlforwarditerator_p.h | 8 +++--- src/xmlpatterns/data/qabstractfloatcasters_tpl_p.h | 2 +- src/xmlpatterns/data/qatomicvalue.cpp | 2 +- .../snippets/patternist/escapeStringLiterals.xml | 2 +- .../doc/snippets/patternist/introductionExample.xq | 2 +- .../functions/qcomparingaggregator_tpl_p.h | 2 +- src/xmlpatterns/functions/qpatternplatform_p.h | 2 +- src/xmlpatterns/functions/qsequencefns_p.h | 4 +-- tests/auto/checkxmlfiles/checkxmlfiles.pro | 10 ++++---- .../auto/patternistexamples/patternistexamples.pro | 30 +++++++++++----------- .../qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp | 2 +- tests/auto/xmlpatterns/XSLTTODO | 2 +- .../xmlpatternssdk/docs/XMLIndenterExample.cpp | 2 +- .../auto/xmlpatternssdk/docs/XMLWriterExample.cpp | 2 +- tests/auto/xmlpatternsxqts/TODO | 2 +- tools/xmlpatterns/qapplicationargumentparser.cpp | 8 +++--- tools/xmlpatterns/xmlpatterns.pro | 4 +-- 27 files changed, 80 insertions(+), 80 deletions(-) diff --git a/examples/xmlpatterns/filetree/doc/src/filetree.qdoc b/examples/xmlpatterns/filetree/doc/src/filetree.qdoc index 1ad2c3d..b1204b6 100644 --- a/examples/xmlpatterns/filetree/doc/src/filetree.qdoc +++ b/examples/xmlpatterns/filetree/doc/src/filetree.qdoc @@ -31,7 +31,7 @@ \ingroup xmlpattern_examples This example shows how to use Qt XML Patterns for querying non-XML - data that is modeled to look like XML. + data that is modeled to look like XML. \tableofcontents @@ -108,7 +108,7 @@ \snippet xmlpatterns/filetree/filetree.h 1 The \c{FileTree} class declares four data members: - + \snippet xmlpatterns/filetree/filetree.h 2 The QVector \c{m_fileInfos} will contain the node model. Each @@ -126,7 +126,7 @@ can use. So we must build an analog of the file system in memory from instances of QFileInfo, and we use that analog as the custom node model. - + The two sets of flags, \c{m_filterAllowAll} and \c{m_sortFlags}, contain OR'ed flags from QDir::Filters and QDir::SortFlags respectively. They are set by the \c{FileTree} constructor and used @@ -222,7 +222,7 @@ simple as the ones described so far, but the callback function used for traversing (and building) the node model is more complex. - \section3 Building And Traversing The Node Model + \section3 Building And Traversing The Node Model The node model in \c{FileTree} is not fully built before the query engine begins evaluating the query. In fact, when the query engine @@ -299,7 +299,7 @@ \section2 The UI Class: MainWindow The example's UI is a conventional Qt GUI application inheriting - QMainWindow and the Ui_MainWindow base class generated by + QMainWindow and the Ui_MainWindow base class generated by \l{Qt Designer Manual} {Qt Designer}. \snippet xmlpatterns/filetree/mainwindow.h 0 @@ -360,12 +360,12 @@ The user chooses an XQuery from the menu in the combobox on the right. Choosing an XQuery signals the \c{on_queryBox_currentIndexChanged()} slot: - + \snippet xmlpatterns/filetree/mainwindow.cpp 2 The slot function opens and loads the query file and then calls the private function \c{evaluateResult()} to run the query: - + \snippet xmlpatterns/filetree/mainwindow.cpp 3 \c{evaluateResult()} is a second example of the same code pattern @@ -403,6 +403,6 @@ build the node model incrementally is important, because it allows us to only build the region of the model we need for evaluating the query. In other cases, it will be simpler to just build the entire - node model. + node model. */ diff --git a/examples/xmlpatterns/filetree/filetree.cpp b/examples/xmlpatterns/filetree/filetree.cpp index 5df6afb..bcde110 100644 --- a/examples/xmlpatterns/filetree/filetree.cpp +++ b/examples/xmlpatterns/filetree/filetree.cpp @@ -144,7 +144,7 @@ QXmlNodeModelIndex FileTree::toNodeIndex(const QFileInfo &fileInfo) const /*! This private helper function is only called by nextFromSimpleAxis(). It is called whenever nextFromSimpleAxis() is called with an axis - parameter of either \c{PreviousSibling} or \c{NextSibling}. + parameter of either \c{PreviousSibling} or \c{NextSibling}. */ //! [5] QXmlNodeModelIndex FileTree::nextSibling(const QXmlNodeModelIndex &nodeIndex, @@ -213,7 +213,7 @@ FileTree::nextFromSimpleAxis(SimpleAxis axis, const QXmlNodeModelIndex &nodeInde switch (axis) { case Parent: return toNodeIndex(QFileInfo(fi.path()), Directory); - + case FirstChild: { if (type == File) // A file has no children. @@ -233,7 +233,7 @@ FileTree::nextFromSimpleAxis(SimpleAxis axis, const QXmlNodeModelIndex &nodeInde return toNodeIndex(firstChild); } } - + case PreviousSibling: return nextSibling(nodeIndex, fi, -1); diff --git a/examples/xmlpatterns/filetree/mainwindow.cpp b/examples/xmlpatterns/filetree/mainwindow.cpp index 9bf71cd..0147a83 100644 --- a/examples/xmlpatterns/filetree/mainwindow.cpp +++ b/examples/xmlpatterns/filetree/mainwindow.cpp @@ -144,9 +144,9 @@ void MainWindow::loadDirectory(const QString &directory) treeInfo->setText(tr("Model of %1 output as XML.").arg(directory)); fileTree->setText(QString::fromLatin1(output.constData())); evaluateResult(); -//! [6] +//! [6] } -//! [6] +//! [6] //! [4] void MainWindow::on_actionAbout_triggered() diff --git a/examples/xmlpatterns/filetree/queries/listCPPFiles.xq b/examples/xmlpatterns/filetree/queries/listCPPFiles.xq index e311d27..ab8dc35 100644 --- a/examples/xmlpatterns/filetree/queries/listCPPFiles.xq +++ b/examples/xmlpatterns/filetree/queries/listCPPFiles.xq @@ -10,7 +10,7 @@ declare variable $where as xs:string := string($fileTree/@filePath);
    { for $file in $fileTree//file[@suffix = "cpp"] order by xs:integer($file/@size) - return + return
  • {string($file/@fileName)}, size: {string($file/@size)}
  • diff --git a/examples/xmlpatterns/recipes/doc/src/recipes.qdoc b/examples/xmlpatterns/recipes/doc/src/recipes.qdoc index ced3323..3e8b396 100644 --- a/examples/xmlpatterns/recipes/doc/src/recipes.qdoc +++ b/examples/xmlpatterns/recipes/doc/src/recipes.qdoc @@ -31,7 +31,7 @@ \ingroup xmlpattern_examples The Recipes example shows how to use Qt XML Patterns to query XML data - loaded from a file. + loaded from a file. \tableofcontents @@ -40,7 +40,7 @@ In this case, the XML data represents a cookbook, \c{cookbook.xml}, which contains \c{} as its document element, which in turn contains a sequence of \c{} elements. This XML data is - searched using queries stored in XQuery files (\c{*.xq}). + searched using queries stored in XQuery files (\c{*.xq}). \section2 The User Interface @@ -97,7 +97,7 @@ display its contents in the top group box's \l{QTextEdit} {text viewer} . Finally, it finds the XQuery files (\c{.xq}) and adds each one to the \l{QComboBox} {combo box} menu. - + \snippet xmlpatterns/recipes/querymainwindow.cpp 0 The work is done in the \l{displayQuery() slot} {displayQuery()} diff --git a/examples/xmlpatterns/xquery/doc/src/globalVariables.qdoc b/examples/xmlpatterns/xquery/doc/src/globalVariables.qdoc index 02d2af0..94777cd 100644 --- a/examples/xmlpatterns/xquery/doc/src/globalVariables.qdoc +++ b/examples/xmlpatterns/xquery/doc/src/globalVariables.qdoc @@ -62,7 +62,7 @@ do is protect the global variables to prevent the bugs described above. How can we use XQuery and \l{http://public.kitware.com/GCC_XML/HTML/Index.html} {GCC-XML} to - find the variables that need protecting? + find the variables that need protecting? \section3 A C++ application @@ -72,7 +72,7 @@ \section3 The XML description of the C++ application - Submitting this C++ source to + Submitting this C++ source to \l{http://public.kitware.com/GCC_XML/HTML/Index.html} {GCC-XML} produces this XML description: @@ -102,7 +102,7 @@ The \c xmlpatterns command loads and parses \c globals.gccxml, runs the XQuery \c reportGlobals.xq, and generates this report: - \div {class="details"} + \div {class="details"} Start report: 2008-12-16T13:43:49.65Z \enddiv @@ -122,7 +122,7 @@ \div {class="details"} End report: 2008-12-16T13:43:49.65Z \enddiv - \section1 XQuery Code Walk-Through + \section1 XQuery Code Walk-Through The XQuery source is in \c{examples/xmlpatterns/xquery/globalVariables/reportGlobals.xq} @@ -175,12 +175,12 @@ \quotefromfile xmlpatterns/xquery/globalVariables/globals.html \skipto \printuntil - + The XQuery declares three more local functions that are called in turn by the \c{local:report()} function. \c{isComplexType()} returns true if the variable has a complex type. The variable can be mutable or const. - + \quotefromfile xmlpatterns/xquery/globalVariables/reportGlobals.xq \skipto declare function local:isComplexType \printuntil }; diff --git a/examples/xmlpatterns/xquery/globalVariables/globals.cpp b/examples/xmlpatterns/xquery/globalVariables/globals.cpp index 6c1f954..0edb9cf 100644 --- a/examples/xmlpatterns/xquery/globalVariables/globals.cpp +++ b/examples/xmlpatterns/xquery/globalVariables/globals.cpp @@ -43,7 +43,7 @@ 2. int mutablePrimitive2; 3. const int constPrimitive1 = 4; 4. const int constPrimitive2 = 3; - 5. + 5. 6. class ComplexClass 7. { 8. public: @@ -56,7 +56,7 @@ 15. ComplexClass mutableComplex2; 16. const ComplexClass constComplex1; 17. const ComplexClass constComplex2; -18. +18. 19. int main() 20. { 22. int localVariable; diff --git a/examples/xmlpatterns/xquery/globalVariables/globals.html b/examples/xmlpatterns/xquery/globalVariables/globals.html index d8affc8..1b888da 100644 --- a/examples/xmlpatterns/xquery/globalVariables/globals.html +++ b/examples/xmlpatterns/xquery/globalVariables/globals.html @@ -12,7 +12,7 @@ .variableName { font-family: courier; - color: blue + color: blue } diff --git a/examples/xmlpatterns/xquery/globalVariables/reportGlobals.xq b/examples/xmlpatterns/xquery/globalVariables/reportGlobals.xq index 026679d..4bc4243 100644 --- a/examples/xmlpatterns/xquery/globalVariables/reportGlobals.xq +++ b/examples/xmlpatterns/xquery/globalVariables/reportGlobals.xq @@ -1,5 +1,5 @@ -(: - This XQuery loads a GCC-XML file and reports the locations of all +(: + This XQuery loads a GCC-XML file and reports the locations of all global variables in the original C++ source. To run the query, use the command line: @@ -12,10 +12,10 @@ declare variable $fileToOpen as xs:anyURI external; declare variable $inDoc as document-node() := doc($fileToOpen); -(: +(: This function determines whether the typeId is a complex type, e.g. QString. We only check whether it's a class. To be strictly - correct, we should check whether the class has a non-synthesized + correct, we should check whether the class has a non-synthesized constructor. We accept both mutable and const types. :) declare function local:isComplexType($typeID as xs:string) as xs:boolean @@ -33,7 +33,7 @@ declare function local:isPrimitive($typeId as xs:string) as xs:boolean exists($inDoc/GCC_XML/FundamentalType[@id = $typeId]) }; -(: +(: This function constructs a line for the report. The line contains a variable name, the source file, and the line number. :) @@ -42,7 +42,7 @@ declare function local:location($block as element()) as xs:string concat($inDoc/GCC_XML/File[@id = $block/@file]/@name, " at line ", $block/@line) }; -(: +(: This function generates the report. Note that it is called once in the element of the output. @@ -76,7 +76,7 @@ declare function local:report() as element()+ }; (: - This is where the report is output. First + This is where the report is output. First there is some style stuff, then the element, which contains the call to the \c{local:report()} declared above. @@ -95,7 +95,7 @@ declare function local:report() as element()+ .variableName {{ font-family: courier; - color: blue + color: blue }} diff --git a/src/xmlpatterns/Doxyfile b/src/xmlpatterns/Doxyfile index 83f7062..426be61 100644 --- a/src/xmlpatterns/Doxyfile +++ b/src/xmlpatterns/Doxyfile @@ -504,7 +504,7 @@ EXAMPLE_RECURSIVE = YES # directories that contain image that are included in the documentation (see # the \image command). -IMAGE_PATH = +IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program @@ -990,7 +990,7 @@ INCLUDE_FILE_PATTERNS = # instead of the = operator. PREDEFINED = Q_SLOTS="slots" \ - Q_SIGNALS="signals" + Q_SIGNALS="signals" # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. @@ -1076,7 +1076,7 @@ HIDE_UNDOC_RELATIONS = YES HAVE_DOT = YES -CALLER_GRAPH = NO +CALLER_GRAPH = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and diff --git a/src/xmlpatterns/api/qabstractxmlforwarditerator_p.h b/src/xmlpatterns/api/qabstractxmlforwarditerator_p.h index b99e82a..94703e5 100644 --- a/src/xmlpatterns/api/qabstractxmlforwarditerator_p.h +++ b/src/xmlpatterns/api/qabstractxmlforwarditerator_p.h @@ -188,10 +188,10 @@ namespace QPatternist typename ListType = QList > class ListIterator : public ListIteratorPlatform, ListType> { - /* - * This declaration is needed for MSVC 2005, 14.00.50727.42 for 80x86. - */ - friend class IteratorVector; + /* + * This declaration is needed for MSVC 2005, 14.00.50727.42 for 80x86. + */ + friend class IteratorVector; using ListIteratorPlatform, ListType>::m_list; diff --git a/src/xmlpatterns/data/qabstractfloatcasters_tpl_p.h b/src/xmlpatterns/data/qabstractfloatcasters_tpl_p.h index 3f6f6c0..e11ad8d 100644 --- a/src/xmlpatterns/data/qabstractfloatcasters_tpl_p.h +++ b/src/xmlpatterns/data/qabstractfloatcasters_tpl_p.h @@ -64,7 +64,7 @@ Item BooleanToAbstractFloatCaster::castFrom(const Item &from, const QExplicitlySharedDataPointer &context) const { // RVCT doesn't like using template parameter in trinary operator when the trinary operator result is - // passed directly into another constructor. + // passed directly into another constructor. bool tempDouble = isDouble; if(from.template as()->evaluateEBV(context)) return tempDouble ? toItem(CommonValues::DoubleOne) : toItem(CommonValues::FloatOne); diff --git a/src/xmlpatterns/data/qatomicvalue.cpp b/src/xmlpatterns/data/qatomicvalue.cpp index 18de5b9..ec6e1b7 100644 --- a/src/xmlpatterns/data/qatomicvalue.cpp +++ b/src/xmlpatterns/data/qatomicvalue.cpp @@ -227,7 +227,7 @@ ItemType::Ptr AtomicValue::qtToXDMType(const QXmlItem &item) case QVariant::Time: return BuiltinTypes::xsDateTime; case QMetaType::Float: - return BuiltinTypes::xsFloat; + return BuiltinTypes::xsFloat; case QVariant::Double: return BuiltinTypes::xsDouble; default: diff --git a/src/xmlpatterns/doc/snippets/patternist/escapeStringLiterals.xml b/src/xmlpatterns/doc/snippets/patternist/escapeStringLiterals.xml index 425ccb0..434625b 100644 --- a/src/xmlpatterns/doc/snippets/patternist/escapeStringLiterals.xml +++ b/src/xmlpatterns/doc/snippets/patternist/escapeStringLiterals.xml @@ -1,2 +1,2 @@ -

    "I hate quotations" -- Ralph Waldo Emerson" +

    "I hate quotations" -- Ralph Waldo Emerson" '"I hate quotations"" -- Ralph Waldo Emerson"', appeared above

    \ No newline at end of file diff --git a/src/xmlpatterns/doc/snippets/patternist/introductionExample.xq b/src/xmlpatterns/doc/snippets/patternist/introductionExample.xq index 1a309dd..549cfa2 100644 --- a/src/xmlpatterns/doc/snippets/patternist/introductionExample.xq +++ b/src/xmlpatterns/doc/snippets/patternist/introductionExample.xq @@ -1,3 +1,3 @@ {doc("library.xml")/bib/book[publisher="Addison-Wesley" and @year>1991]/{title}} - + diff --git a/src/xmlpatterns/functions/qcomparingaggregator_tpl_p.h b/src/xmlpatterns/functions/qcomparingaggregator_tpl_p.h index 218df2d..d73a958 100644 --- a/src/xmlpatterns/functions/qcomparingaggregator_tpl_p.h +++ b/src/xmlpatterns/functions/qcomparingaggregator_tpl_p.h @@ -203,7 +203,7 @@ ComparingAggregator::typeCheck(const StaticContext::Ptr &context, if(!m_operands.first()->staticType()->cardinality().allowsMany()) return m_operands.first(); - + // explicit scope needed in RVCT ComparingAggregator::prepareComparison(fetchComparator(t1, t1, context)); diff --git a/src/xmlpatterns/functions/qpatternplatform_p.h b/src/xmlpatterns/functions/qpatternplatform_p.h index 5e73327..8da60c5 100644 --- a/src/xmlpatterns/functions/qpatternplatform_p.h +++ b/src/xmlpatterns/functions/qpatternplatform_p.h @@ -121,7 +121,7 @@ namespace QPatternist inline int captureCount() const; /** - * @short Parses pattern + * @short Parses pattern */ static QRegExp parsePattern(const QString &pattern, const ReportContext::Ptr &context, diff --git a/src/xmlpatterns/functions/qsequencefns_p.h b/src/xmlpatterns/functions/qsequencefns_p.h index 22ce9b3..5fc2d94 100644 --- a/src/xmlpatterns/functions/qsequencefns_p.h +++ b/src/xmlpatterns/functions/qsequencefns_p.h @@ -145,7 +145,7 @@ namespace QPatternist virtual Expression::Ptr compress(const StaticContext::Ptr &context) { // RVCT doesn't like using template parameter in trinary operator when the trinary operator result is - // passed directly into another constructor. + // passed directly into another constructor. Q_ASSERT(Id == IDExistsFN || Id == IDEmptyFN); const Expression::Ptr me(FunctionCall::compress(context)); @@ -154,7 +154,7 @@ namespace QPatternist return me; // RVCT doesn't like using template parameter in trinary operator when the trinary operator result is - // passed directly into another constructor. + // passed directly into another constructor. Expression::ID tempId = Id; const Cardinality myCard((tempId == IDExistsFN) ? Cardinality::oneOrMore() : Cardinality::empty()); diff --git a/tests/auto/checkxmlfiles/checkxmlfiles.pro b/tests/auto/checkxmlfiles/checkxmlfiles.pro index 29bd8ee..d1d26fb 100644 --- a/tests/auto/checkxmlfiles/checkxmlfiles.pro +++ b/tests/auto/checkxmlfiles/checkxmlfiles.pro @@ -10,11 +10,11 @@ wince*: { QT += network requires(!isEmpty(_QMAKE_SUPER_CACHE_)) addFiles.files = \ - ../../../examples/xquery/globalVariables/globals.gccxml \ - ../../../../qtdoc/doc/src/diagrams/stylesheet/treeview.svg \ - ../../../../qtdoc/doc/src/diagrams/designer-manual/designer-mainwindow-actions.ui \ - ../../../../qtsql/examples/sql/masterdetail/albumdetails.xml \ - ../../../../qtbase/examples/widgets/tools/undo/undo.qrc + ../../../examples/xquery/globalVariables/globals.gccxml \ + ../../../../qtdoc/doc/src/diagrams/stylesheet/treeview.svg \ + ../../../../qtdoc/doc/src/diagrams/designer-manual/designer-mainwindow-actions.ui \ + ../../../../qtsql/examples/sql/masterdetail/albumdetails.xml \ + ../../../../qtbase/examples/widgets/tools/undo/undo.qrc addFiles.path = xmlfiles DEPLOYMENT += addFiles } else { diff --git a/tests/auto/patternistexamples/patternistexamples.pro b/tests/auto/patternistexamples/patternistexamples.pro index 02c6689..d55e979 100644 --- a/tests/auto/patternistexamples/patternistexamples.pro +++ b/tests/auto/patternistexamples/patternistexamples.pro @@ -3,22 +3,22 @@ CONFIG += testcase SOURCES += tst_patternistexamples.cpp QT += testlib wince*: { - snippets.files = ../../../doc/src/snippets/patternist/* - snippets.path = patternist - widgetRen.files = ../../../examples/xquery/widgetRenderer/* - widgetRen.path = widgetRenderer - globVar.files = ../../../examples/xquery/globalVariables/* - globVar.path = globalVariables - filetree.files = ../../../examples/filetree/* - filetree.path = filetree - recipes.files = ../../../examples/recipes/* - recipes.path = recipes - files.files = ../../../examples/recipes/files/* - files.path = recipes\\files + snippets.files = ../../../doc/src/snippets/patternist/* + snippets.path = patternist + widgetRen.files = ../../../examples/xquery/widgetRenderer/* + widgetRen.path = widgetRenderer + globVar.files = ../../../examples/xquery/globalVariables/* + globVar.path = globalVariables + filetree.files = ../../../examples/filetree/* + filetree.path = filetree + recipes.files = ../../../examples/recipes/* + recipes.path = recipes + files.files = ../../../examples/recipes/files/* + files.path = recipes\\files - DEPLOYMENT += snippets widgetRen globVar filetree recipes files - # take care of dependency - QT += network + DEPLOYMENT += snippets widgetRen globVar filetree recipes files + # take care of dependency + QT += network } else { DEFINES += SOURCETREE=\\\"$$absolute_path(../../..)/\\\" } diff --git a/tests/auto/qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp b/tests/auto/qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp index 1aae169..0e74758 100644 --- a/tests/auto/qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp +++ b/tests/auto/qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp @@ -121,7 +121,7 @@ void tst_QXmlNodeModelIndex::copyConstructor() const /* Take a copy of a temporary. */ { - /* The extra paranthesis silences a warning on win32-msvc. */ + /* The extra paranthesis silences a warning on win32-msvc. */ const QXmlNodeModelIndex copy((QXmlNodeModelIndex())); } } diff --git a/tests/auto/xmlpatterns/XSLTTODO b/tests/auto/xmlpatterns/XSLTTODO index a61e343..2ee8106 100644 --- a/tests/auto/xmlpatterns/XSLTTODO +++ b/tests/auto/xmlpatterns/XSLTTODO @@ -574,7 +574,7 @@ sort $in/order by @sortKey John Snelson of Oracle Berkeley DB XML & XQilla writes in private mail: - I'd had the same thought myself, too - you must be reading my mind ;-) + I'd had the same thought myself, too - you must be reading my mind ;-) What is he referring to? diff --git a/tests/auto/xmlpatternssdk/docs/XMLIndenterExample.cpp b/tests/auto/xmlpatternssdk/docs/XMLIndenterExample.cpp index e7cfe62..a734813 100644 --- a/tests/auto/xmlpatternssdk/docs/XMLIndenterExample.cpp +++ b/tests/auto/xmlpatternssdk/docs/XMLIndenterExample.cpp @@ -45,7 +45,7 @@ XMLWriter writer(&returnBuffer); writer.startDocument(); writer.startDTD(QLatin1String("html"), QLatin1String("-//W3C//DTD XHTML 1.0 Strict//EN"), - QLatin1String("http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd")); + QLatin1String("http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd")); writer.endDTD(); writer.startPrefixMapping(QString(), QLatin1String("http://www.w3.org/1999/xhtml")); diff --git a/tests/auto/xmlpatternssdk/docs/XMLWriterExample.cpp b/tests/auto/xmlpatternssdk/docs/XMLWriterExample.cpp index e7cfe62..a734813 100644 --- a/tests/auto/xmlpatternssdk/docs/XMLWriterExample.cpp +++ b/tests/auto/xmlpatternssdk/docs/XMLWriterExample.cpp @@ -45,7 +45,7 @@ XMLWriter writer(&returnBuffer); writer.startDocument(); writer.startDTD(QLatin1String("html"), QLatin1String("-//W3C//DTD XHTML 1.0 Strict//EN"), - QLatin1String("http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd")); + QLatin1String("http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd")); writer.endDTD(); writer.startPrefixMapping(QString(), QLatin1String("http://www.w3.org/1999/xhtml")); diff --git a/tests/auto/xmlpatternsxqts/TODO b/tests/auto/xmlpatternsxqts/TODO index d25a6a3..fba45f9 100644 --- a/tests/auto/xmlpatternsxqts/TODO +++ b/tests/auto/xmlpatternsxqts/TODO @@ -216,7 +216,7 @@ KXQTS * Rename TestSuite::testResult(); it's not exactly a getter * Grr, rename identifiers and files from *BaseLine* into *Baseline*. * Speed up --run-outofprocess by keeping patternistrunsuite running as long as possible. -* Make text fields in test case view, selectable. Same with AST view. +* Make text fields in test case view, selectable. Same with AST view. - Code cleaning commands: * Find cases where stuff looks like "const Foo& var" instead of "const Foo &var": diff --git a/tools/xmlpatterns/qapplicationargumentparser.cpp b/tools/xmlpatterns/qapplicationargumentparser.cpp index 031e088..8364046 100644 --- a/tools/xmlpatterns/qapplicationargumentparser.cpp +++ b/tools/xmlpatterns/qapplicationargumentparser.cpp @@ -403,7 +403,7 @@ void QApplicationArgumentParserPrivate::displayHelp() const /* " -name ". Indent a bit first, inspired by Qt's moc. */ const QString &name = at.name(); QString prolog(QLatin1String(" ")); - + /* We have a special case for the single dash. */ if(name == QChar::fromLatin1('-')) prolog.append(name); @@ -427,7 +427,7 @@ void QApplicationArgumentParserPrivate::displayHelp() const else prolog.append(QLatin1Char('<') + typeName + QLatin1Char('>')); // TODO Don't we want to display the default value? - + prolog.append(QLatin1Char(' ')); } @@ -503,7 +503,7 @@ QList QApplicationArgumentParserPrivate::builtinArguments( QLatin1String("Displays this help."))); result.append(QApplicationArgument(QLatin1String("version"), QLatin1String("Displays version information."))); - + result.append(QApplicationArgument(QLatin1String("-"), QLatin1String("When appearing, any following options are not interpreted as switches."))); return result; @@ -644,7 +644,7 @@ bool QApplicationArgumentParserPrivate::parseNamelessArguments(const QString &in } /*! - Parses input() together with declaredArguments() and returns \c false if the caller + Parses input() together with declaredArguments() and returns \c false if the caller should exit immediately, which is the case of which an error was encountered or help or the version was requested. diff --git a/tools/xmlpatterns/xmlpatterns.pro b/tools/xmlpatterns/xmlpatterns.pro index 1fad197..0f1ee4f 100644 --- a/tools/xmlpatterns/xmlpatterns.pro +++ b/tools/xmlpatterns/xmlpatterns.pro @@ -4,12 +4,12 @@ QT = core xmlpatterns-private # in libQtXmlPatterns. See src/xmlpatterns/api/api.pri. SOURCES = main.cpp \ qapplicationargument.cpp \ - qapplicationargumentparser.cpp + qapplicationargumentparser.cpp HEADERS = main.h \ qapplicationargument.cpp \ - qapplicationargumentparser.cpp + qapplicationargumentparser.cpp load(qt_tool) -- cgit v1.2.1