summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fixed build issue with Sun CC 5.5.jasplin2009-06-051-1/+1
| | | | Reviewed-by: TrustMe
* qdoc: Changed to use h2 for section headers instead of h3.Martin Smith2009-06-051-14/+29
|
* qdoc: Put <b>...</b> around names in each summary section.Martin Smith2009-06-051-10/+15
|
* Merge commit 'origin/4.5'Olivier Goffart2009-06-041-19/+27
|\
| * fix catalan plural rulesOswald Buddenhagen2009-06-031-2/+7
| |
| * rename some plural formsOswald Buddenhagen2009-06-031-4/+3
| |
| * drop traditional czech plural rules in favor of today's slovak-like rulesOswald Buddenhagen2009-06-031-8/+2
| |
| * fix turkish plural formsOswald Buddenhagen2009-06-031-1/+1
| |
| * fix tagalog plural formsOswald Buddenhagen2009-06-031-2/+8
| |
| * fix icelandic plural formsOswald Buddenhagen2009-06-031-1/+5
| |
| * fix lithuanian plural rulesOswald Buddenhagen2009-06-031-2/+2
| |
* | qdoc3: define QT_NO_CAST_TO_ASCII for safety, no code changes needed.hjk2009-06-041-1/+1
| |
* | qdoc: Put <b>...</b> around accessor names.Martin Smith2009-06-042-15/+31
| |
* | qdoc: Reset the memItemLeft width property to 200.Martin Smith2009-06-042-2/+2
| |
* | qdoc: Fixed some spacing problems.Martin Smith2009-06-032-13/+20
| |
* | qdoc: Fixed constructor position in summary lists.Martin Smith2009-06-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | The constructors had been displayed in the left column of the table in the summary list, because there was no type. It was caused by a strange test of the match index for 0, which was true for constructors and destructors, anything without a type. I removed that test, since I couldn't figure out what it was for. We might see problems elsewhere in the docs because of this, so beware. I didn't see any, but that test must have been there for some reason.
* | qdoc: Changed the css to make more people happy.Martin Smith2009-06-022-11/+11
| | | | | | | | | | | | | | No more fonts less than 100%. Toned down the green lines separating table rows, now gray (or we can try a softer green). Made the table widt 100%. More coming. the constructors still aren't aligned properly.
* | Merge branch '4.5' of scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-06-022-28/+31
|\ \ | |/ | | | | | | | | | | | | Conflicts: src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp tests/auto/selftests/expected_skip.txt tests/auto/selftests/tst_selftests.cpp
| * Only display the choice of license if we can find the filesMarius Storm-Olsen2009-05-291-20/+23
| | | | | | | | | | | | Task-number: 254451 Reviewed-by: eskil BT: yes
| * Fixed build issues with MSVCThierry Bastian2009-05-291-8/+8
| | | | | | | | | | | | | | | | | | | | in atomic operations, we declare Interlock... functions in the namespace That can confuse the compiler because they are also declared in another header outside the namespace. Same problem in clucene where we include windows.h from within the NS. Task-number: 254214 Reviewed-by: ogoffart
* | Fixed docs for task 254824.Friedemann Kleint2009-05-291-2/+1
| | | | | | | | Task-number: 254824
* | Enable overriding of the factory functions of QUiLoader.Friedemann Kleint2009-05-294-20/+28
| | | | | | | | | | | | | | | | | | | | Move initialization of QAction/QActionGroups elsewhere. Detect the root widget by checking its parent against the parent widget passed in and apply only the size part of the geometry property to it. Task-number: 254824 Initial-patch-by: joao <joao@abecasis.name>
* | Added the -showinternal flag to qdoc.Martin Smith2009-05-294-12/+26
| | | | | | | | | | | | | | | | | | | | | | When you set -showinternal on the command line, qdoc will include everything marked \internal in the documentation. This flag is not very useful at the moment for two reasons: (1) It generates hundreds of qdoc errors because most of the things marked with \internal don't have any documentation anyway, or the documentation has other errors in it that weren't being detected because of the \internal. (2) There is a bus error toward the end, which I haven't tracked down yet. For now, use -showinternal at your own risk.
* | Call QFormBuilderExtra::instance lessJoão Abecasis2009-05-291-4/+6
| | | | | | | | Reviewed-by: Friedemann Kleint
* | Removed dead code ifdefed with QDOC2DOXMartin Smith2009-05-285-2240/+2
| | | | | | | | | | | | These changes were added to qdoc in the days when we thought we might switch to doxygen. Now we have taken the approach of making qdoc output be more doxygen-like, so this ifdefed code is now dead.
* | Merge branch '4.5'Tom Cooksey2009-05-282-12/+23
|\ \ | |/ | | | | | | Conflicts: src/gui/embedded/qkbdtty_qws.cpp
| * BT: Support saving forms with resources more than once in Qt JambiEskil Abrahamsen Blomfeldt2009-05-281-12/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a form is loaded, Designer will set the path to the resource as an absolute path rather than the path actually stored in the file. There is code to work around this to make file paths relative when saving the file later on, but no work around for Qt Jambi. So when saving Qt Jambi forms, you would get an absolute path to the resource which contains the location of the resource file (.jar or on disk) This of course breaks the concept of resources, as the .jui file was no longer portable. The fix is to special case Qt Jambi resources and set the relative path when loading them. The patch has no effect on regular Designer. Task-number: 254621 Reviewed-by: Kai Koehne
| * support for -ltcg configure switch for Windows CE buildsJoerg Bornemann2009-05-281-0/+1
| | | | | | | | | | | | | | | | | | Additionally we turn -ltcg on by default on Windows CE. See commit 56191830 for details. Reviewed-by: mauricek BT: yes
* | improved string operations all over the placeThierry Bastian2009-05-2810-23/+23
| | | | | | | | | | used character operations whenever possible better usage of QLatin1String
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-05-277-82/+116
|\ \ | |/ | | | | | | Conflicts: tests/auto/qtreeview/tst_qtreeview.cpp
| * Integrate merge-request #549 into branch '4.5'Simon Hausmann2009-05-272-2/+4
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Thomas Sondergaard (2): Danish translations Updated danish translations. Added them to relevant project files. Request-url: http://qt.gitorious.org/qt/qt/merge_requests/549 Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
| | * Updated danish translations. Added them to relevant project files.Thomas Sondergaard2009-05-262-2/+4
| | |
| * | Workaround the palette issue, set it only when we search is open.kh2009-05-262-2/+38
| | |
| * | Fix broken search inside search results.kh2009-05-262-70/+66
| | | | | | | | | | | | Reviewed-by: kh
| * | Correcting bugs in classic.cssMorten Engvoldsen2009-05-261-4/+4
| | | | | | | | | | | | | | | | | | Correcting invalid padding values. none is not a valid padding value. Rev-by: David Boddie
| * | Changed qdoc to simplify the output for overloaded functions.Martin Smith2009-05-251-3/+1
| | | | | | | | | | | | Task-number: 249222
| * | Changed qdoc program to display version from QT_VERSION_STR.Martin Smith2009-05-251-1/+3
| | | | | | | | | | | | Task-number: 251486
* | | A few html code generator fixes.Martin Smith2009-05-271-9/+7
| | | | | | | | | | | | | | | | | | | | | | | | There was an empty <div> element with a name that came after it. I moved the name inside the <div> element. And there were some <b> elements that began inside one element and ended inside the next element. I just removed them, because they didn't really add anything. And I made the "Access functions:" bold.
* | | Fixed crash when encountering invalid forms.Friedemann Kleint2009-05-261-1/+4
| | | | | | | | | | | | | | | | | | | | | Crash when replacing the QDockWidget contents widget by a widget using a container extension. Task-number: 254553
* | | implement --locations option (complementing lupdate)Oswald Buddenhagen2009-05-252-1/+18
| | |
* | | implement --no-ui-lines option (complementing lupdate)Oswald Buddenhagen2009-05-253-0/+28
| | |
* | | remove now unused static functionOswald Buddenhagen2009-05-251-11/+2
| | | | | | | | | | | | sneak in white space change :)
* | | qdoc: Fixed non-well-formed XML.David Boddie2009-05-252-1/+2
| | | | | | | | | | | | Reviewed-by: Martin Smith
* | | Fixed compilation Solaris.Friedemann Kleint2009-05-251-10/+6
| | |
* | | Doc - removing the constraint on font size.Kavindra Devi Palaraja2009-05-221-3/+0
| | | | | | | | | | | | Reviewed-By: David Boddie
* | | Enabled the use of promoted widgets in new form templates.Friedemann Kleint2009-05-226-124/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The form builder used for preview of the templates did not implement custom widget handling (FormBuilder::createCustomWidgets()). On encountering a promoted widget, the widget factory would then create a Widget Database entry specifying QWidget inheritance (emergency fallback) which could not be overidden later on. To fix this, moved the code for handling custom widgets from QDesignerResource to QSimpleResource and create a new formbuilder class that handles it especially for the New Form Dialog preview. Task-number: 254282
* | | Merge branch '4.5' of ../qt-45-documentationDavid Boddie2009-05-201-5/+11
|\ \ \ | |/ /
| * | Fix parsing method calls with null arguments in Java codeEskil Abrahamsen Blomfeldt2009-05-201-5/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Java, "null" is represented as a keyword, not as the integer 0. The old code assumed the latter. Code such as translate("fooBar", "fooBar", null); would thus not be detected by lupdate when parsing Java files. Reviewed-by: ossi
* | | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtDavid Boddie2009-05-2023-407/+811
|\ \ \ | | | | | | | | | | | | | | | | Conflicts: doc/src/stylesheet.qdoc
| * | | Inject some more Qt colors into the css to make it look a bit more QtSoftwareThomas Zander2009-05-201-22/+12
| | | | | | | | | | | | | | | | Reviewed-By: Kavindra Palaraja