diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-08-23 23:12:53 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-08-23 23:12:53 (GMT) |
commit | d5fd619cabe65e1be87ef33620d566d03989b089 (patch) | |
tree | e5769499ad031ddf3583a5c4a85701f6859800be /tools/qdoc3/puredocparser.cpp | |
parent | 4be6241d267e6789894f788034dc445b463f9ad0 (diff) | |
parent | d194e96c9db5609a058fc142c35921357abc8567 (diff) | |
download | Qt-d5fd619cabe65e1be87ef33620d566d03989b089.zip Qt-d5fd619cabe65e1be87ef33620d566d03989b089.tar.gz Qt-d5fd619cabe65e1be87ef33620d566d03989b089.tar.bz2 |
Merge branch 'master' of git://scm.dev.nokia.troll.no/qt/qt-water-team
* 'master' of git://scm.dev.nokia.troll.no/qt/qt-water-team: (21 commits)
Fix non-ascii name issues in ICD.
Compile fix for Symbian 5th and earlier
fix copying webkit guide under windows
Symbian: Fix backspace on empty lines of multiline textedits
uikit: Fixes for Open GL ES 1 and for pre-3GS devices
uikit: Fix warning.
Use thumb instructions for uikit
Fix compilation with thumb2.
Update uikit README: svg works, warn about thumb
Fix bidi reordering of RTL text with embedded images
Doc: Fixed qdoc warnings.
Fixed infinite loop when loading certain SVGs.
Doc: Fixed qdoc warnings.
Improved comment finding code.
Added language information to the pure documentation parser.
Doc: Fixes to Qt tutorial
Fixed external link to DevNet Wiki.
qdoc: Fixed a crash caused by accessing a null pointer.
Doc: Fixed the example of an encoded URL in the class description.
Doc: Added a copy of the online style images for the qdoc manual.
...
Diffstat (limited to 'tools/qdoc3/puredocparser.cpp')
-rw-r--r-- | tools/qdoc3/puredocparser.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/qdoc3/puredocparser.cpp b/tools/qdoc3/puredocparser.cpp index c7db1bf..0f21cbc 100644 --- a/tools/qdoc3/puredocparser.cpp +++ b/tools/qdoc3/puredocparser.cpp @@ -55,6 +55,11 @@ PureDocParser::~PureDocParser() { } +QString PureDocParser::language() +{ + return "qdoc"; +} + QStringList PureDocParser::sourceFileNameFilter() { return QStringList("*.qdoc"); |