This commit is contained in:
espie 2006-06-04 09:37:43 +00:00
parent 66b3b0b1b3
commit 01f366e93d
10 changed files with 165 additions and 54 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.17 2006/05/15 21:09:39 espie Exp $
# $OpenBSD: Makefile,v 1.18 2006/06/04 09:37:43 espie Exp $
COMMENT= "C++ X11 GUI toolkit"
COMMENT-examples= "examples for qt4"
@ -9,12 +9,12 @@ COMMENT-sqlite2= "sqlite2 plugin for qt4"
COMMENT-sqlite= "sqlite plugin for qt4"
PKGNAME= qt4-${VERSION}
PKGNAME-mysql= qt4-mysql-${VERSION}p0
PKGNAME-postgresql= qt4-postgresql-${VERSION}p0
PKGNAME-examples= qt4-examples-${VERSION}p0
PKGNAME-mysql= qt4-mysql-${VERSION}
PKGNAME-postgresql= qt4-postgresql-${VERSION}
PKGNAME-examples= qt4-examples-${VERSION}
PKGNAME-sqlite2= qt4-sqlite2-${VERSION}
PKGNAME-sqlite= qt4-sqlite-${VERSION}
FULLPKGNAME= qt4-${VERSION}p0
FULLPKGNAME= qt4-${VERSION}
FULLPKGNAME-html= qt4-html-${VERSION}
SHARED_LIBS= Qt3Support 5.0 \
QtCore 5.0 \
@ -28,8 +28,8 @@ SHARED_LIBS= Qt3Support 5.0 \
QtSvg 5.0 \
QtTest 5.0
VERSION= 4.1.2
DISTNAME= qt-x11-opensource-src-4.1.2
VERSION= 4.1.3
DISTNAME= qt-x11-opensource-src-4.1.3
CATEGORIES= x11
MASTER_SITES= ftp://ftp.rediris.es/mirror/Qt/source/ \
ftp://ftp.iasi.roedu.net/mirrors/ftp.trolltech.com/qt/source/ \

View File

@ -1,4 +1,4 @@
MD5 (qt-x11-opensource-src-4.1.2.tar.gz) = 18bca010d09b98e94210710047baca0a
RMD160 (qt-x11-opensource-src-4.1.2.tar.gz) = b4a0031a7c8d72492d8afa1a1190493999cb17ff
SHA1 (qt-x11-opensource-src-4.1.2.tar.gz) = a30ff8594b816528ab08ebcf349a31e244c4278d
SIZE (qt-x11-opensource-src-4.1.2.tar.gz) = 27924277
MD5 (qt-x11-opensource-src-4.1.3.tar.gz) = c6fc6934bfca458dde6e6370a2ed0101
RMD160 (qt-x11-opensource-src-4.1.3.tar.gz) = ecd103f99b2d1ca4b88e749faee5553b8c1c53e2
SHA1 (qt-x11-opensource-src-4.1.3.tar.gz) = 6728b4891c5e24d4a9e1b7b66cc5915f89453b7c
SIZE (qt-x11-opensource-src-4.1.3.tar.gz) = 32200887

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-configure,v 1.5 2006/03/05 21:58:07 espie Exp $
--- configure.orig Thu Feb 16 11:51:17 2006
+++ configure Sun Mar 5 12:10:37 2006
@@ -1152,7 +1152,7 @@ while [ "$#" -gt 0 ]; do
$OpenBSD: patch-configure,v 1.6 2006/06/04 09:37:43 espie Exp $
--- configure.orig Sun May 14 12:47:04 2006
+++ configure Sun May 21 22:58:19 2006
@@ -1218,7 +1218,7 @@ while [ "$#" -gt 0 ]; do
v|verbose)
if [ "$VAL" = "yes" ]; then
if [ "$OPT_VERBOSE" = "$VAL" ]; then # takes two verboses to turn on qmake debugs

View File

@ -0,0 +1,28 @@
$OpenBSD: patch-src_corelib_io_qfsfileengine_unix_cpp,v 1.1 2006/06/04 09:37:43 espie Exp $
--- src/corelib/io/qfsfileengine_unix.cpp.orig Mon May 22 12:22:02 2006
+++ src/corelib/io/qfsfileengine_unix.cpp Mon May 22 12:25:43 2006
@@ -539,13 +539,13 @@ uint QFSFileEngine::ownerId(FileOwner ow
QString QFSFileEngine::owner(FileOwner own) const
{
-#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)
+#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && !defined(Q_OS_OPENBSD)
QVarLengthArray<char, 1024> buf(sysconf(_SC_GETPW_R_SIZE_MAX));
#endif
if(own == OwnerUser) {
struct passwd *pw = 0;
-#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)
+#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && !defined(Q_OS_OPENBSD)
struct passwd entry;
getpwuid_r(ownerId(own), &entry, buf.data(), buf.size(), &pw);
#else
@@ -555,7 +555,7 @@ QString QFSFileEngine::owner(FileOwner o
return QFile::decodeName(QByteArray(pw->pw_name));
} else if(own == OwnerGroup) {
struct group *gr = 0;
-#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)
+#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && !defined(Q_OS_OPENBSD)
buf.resize(sysconf(_SC_GETGR_R_SIZE_MAX));
struct group entry;
getgrgid_r(ownerId(own), &entry, buf.data(), buf.size(), &gr);

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_gui_kernel_qapplication_x11_cpp,v 1.5 2006/06/04 09:37:43 espie Exp $
--- src/gui/kernel/qapplication_x11.cpp.orig Mon May 22 12:31:11 2006
+++ src/gui/kernel/qapplication_x11.cpp Mon May 22 12:31:28 2006
@@ -5554,7 +5554,7 @@ static void sm_performSaveYourself(QSess
sm_setProperty(QString::fromLatin1(SmProgram), QString::fromLocal8Bit(qApp->argv()[0]));
// tell the session manager about our user as well.
struct passwd *entryPtr = 0;
-#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)
+#if !defined(QT_NO_THREAD) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && !defined(Q_OS_OPENBSD)
QVarLengthArray<char, 1024> buf(sysconf(_SC_GETPW_R_SIZE_MAX));
struct passwd entry;
getpwuid_r(geteuid(), &entry, buf.data(), buf.size(), &entryPtr);

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_qt3support_dialogs_q3filedialog_cpp,v 1.1 2005/12/31 15:59:50 espie Exp $
--- src/qt3support/dialogs/q3filedialog.cpp.orig Thu Dec 29 17:55:16 2005
+++ src/qt3support/dialogs/q3filedialog.cpp Thu Dec 29 17:55:35 2005
@@ -3120,6 +3120,9 @@ void Q3FileDialog::setDir(const QString
$OpenBSD: patch-src_qt3support_dialogs_q3filedialog_cpp,v 1.2 2006/06/04 09:37:43 espie Exp $
--- src/qt3support/dialogs/q3filedialog.cpp.orig Sun May 14 12:47:04 2006
+++ src/qt3support/dialogs/q3filedialog.cpp Sun May 21 22:58:20 2006
@@ -3113,6 +3113,9 @@ void Q3FileDialog::setDir(const QString
# define _POSIX_LOGIN_NAME_MAX 9
# endif

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PFRAG.shared,v 1.6 2006/05/15 21:09:39 espie Exp $
@comment $OpenBSD: PFRAG.shared,v 1.7 2006/06/04 09:37:43 espie Exp $
@lib lib/libQt3Support.so.${LIBQt3Support_VERSION}
@lib lib/libQtCore.so.${LIBQtCore_VERSION}
@lib lib/libQtDesigner.so.${LIBQtDesigner_VERSION}
@ -23,11 +23,7 @@
@lib lib/qt4/libQtXml.so.${LIBQtXml_VERSION}
lib/qt4/plugins/accessible/libqtaccessiblecompatwidgets.so
lib/qt4/plugins/accessible/libqtaccessiblewidgets.so
lib/qt4/plugins/arthurplugin/libarthurplugin.so
lib/qt4/plugins/codecs/libqcncodecs.so
lib/qt4/plugins/codecs/libqjpcodecs.so
lib/qt4/plugins/codecs/libqkrcodecs.so
lib/qt4/plugins/codecs/libqtwcodecs.so
lib/qt4/plugins/designer/libarthurplugin.so
lib/qt4/plugins/designer/libcontainerextension.so
lib/qt4/plugins/designer/libcustomwidgetplugin.so
lib/qt4/plugins/designer/libqt3supportwidgets.so

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.10 2006/04/01 12:32:56 espie Exp $
@comment $OpenBSD: PLIST,v 1.11 2006/06/04 09:37:43 espie Exp $
%%SHARED%%
bin/assistant4
bin/designer4
@ -541,6 +541,8 @@ include/X11/qt4/Qt3Support/Q3PtrDictIterator
include/X11/qt4/Qt3Support/Q3PtrList
include/X11/qt4/Qt3Support/Q3PtrListIterator
include/X11/qt4/Qt3Support/Q3PtrListStdIterator
include/X11/qt4/Qt3Support/Q3PtrQueue
include/X11/qt4/Qt3Support/Q3PtrStack
include/X11/qt4/Qt3Support/Q3PtrVector
include/X11/qt4/Qt3Support/Q3RangeControl
include/X11/qt4/Qt3Support/Q3ScrollView
@ -1701,6 +1703,8 @@ lib/qt4/bin/qtconfig
lib/qt4/bin/rcc
lib/qt4/bin/uic
lib/qt4/bin/uic3
lib/qt4/examples/tools/settingseditor/inifiles/licensepage.ini
lib/qt4/examples/tools/settingseditor/inifiles/qsa.ini
lib/qt4/include
@comment lib/qt4/libQt3Support.la
lib/qt4/libQt3Support.prl
@ -1791,6 +1795,8 @@ lib/qt4/mkspecs/features/warn_on.prf
lib/qt4/mkspecs/features/win32/
lib/qt4/mkspecs/features/win32/console.prf
lib/qt4/mkspecs/features/win32/default_pre.prf
lib/qt4/mkspecs/features/win32/embed_manifest_dll.prf
lib/qt4/mkspecs/features/win32/embed_manifest_exe.prf
lib/qt4/mkspecs/features/win32/exceptions.prf
lib/qt4/mkspecs/features/win32/exceptions_off.prf
lib/qt4/mkspecs/features/win32/opengl.prf
@ -1999,8 +2005,6 @@ lib/qt4/phrasebooks/spanish.qph
lib/qt4/phrasebooks/swedish.qph
lib/qt4/plugins/
lib/qt4/plugins/accessible/
lib/qt4/plugins/arthurplugin/
lib/qt4/plugins/codecs/
lib/qt4/plugins/designer/
lib/qt4/plugins/imageformats/
lib/qt4/plugins/inputmethods/
@ -2018,4 +2022,3 @@ lib/qt4/translations/qt_zh_CN.qm
share/doc/qt4/LICENSE.GPL
share/doc/qt4/OPENSOURCE-NOTICE.TXT
share/doc/qt4/README
share/doc/qt4/html/images/propagation-custom.png

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-examples,v 1.4 2006/03/05 21:58:07 espie Exp $
@comment $OpenBSD: PLIST-examples,v 1.5 2006/06/04 09:37:43 espie Exp $
%%SHARED%%
bin/qtdemo
lib/qt4/bin/qtdemo
@ -992,7 +992,6 @@ lib/qt4/examples/tools/regexp/regexpdialog.cpp
lib/qt4/examples/tools/regexp/regexpdialog.h
lib/qt4/examples/tools/settingseditor/
lib/qt4/examples/tools/settingseditor/inifiles/
lib/qt4/examples/tools/settingseditor/inifiles/troll.ini
lib/qt4/examples/tools/settingseditor/locationdialog.cpp
lib/qt4/examples/tools/settingseditor/locationdialog.h
lib/qt4/examples/tools/settingseditor/main.cpp

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-html,v 1.5 2006/03/05 21:58:07 espie Exp $
@comment $OpenBSD: PLIST-html,v 1.6 2006/06/04 09:37:43 espie Exp $
share/doc/qt4/
share/doc/qt4/html/
share/doc/qt4/html/3rdparty.html
@ -66,7 +66,6 @@ share/doc/qt4/html/compatclasses.html
share/doc/qt4/html/console-edition-classes.html
share/doc/qt4/html/containers.html
share/doc/qt4/html/coordsys.html
share/doc/qt4/html/creating-custom-widgets-extensions.html
share/doc/qt4/html/credits.html
share/doc/qt4/html/database.html
share/doc/qt4/html/datastreamformat.html
@ -162,6 +161,7 @@ share/doc/qt4/html/designer-containerextension-multipagewidgetextensionfactory-h
share/doc/qt4/html/designer-containerextension-multipagewidgetplugin-cpp.html
share/doc/qt4/html/designer-containerextension-multipagewidgetplugin-h.html
share/doc/qt4/html/designer-containerextension.html
share/doc/qt4/html/designer-creating-custom-widgets-extensions.html
share/doc/qt4/html/designer-creating-custom-widgets.html
share/doc/qt4/html/designer-creating-mainwindows.html
share/doc/qt4/html/designer-customizing-forms.html
@ -187,6 +187,7 @@ share/doc/qt4/html/designer-taskmenuextension-tictactoetaskmenu-cpp.html
share/doc/qt4/html/designer-taskmenuextension-tictactoetaskmenu-h.html
share/doc/qt4/html/designer-taskmenuextension.html
share/doc/qt4/html/designer-treewalker.html
share/doc/qt4/html/designer-ui-file-format.html
share/doc/qt4/html/designer-using-a-component.html
share/doc/qt4/html/designer-using-containers.html
share/doc/qt4/html/designer-using-custom-widgets.html
@ -274,22 +275,6 @@ share/doc/qt4/html/draganddrop-puzzle-puzzlewidget-h.html
share/doc/qt4/html/draganddrop-puzzle.html
share/doc/qt4/html/draganddrop.html
share/doc/qt4/html/editions.html
share/doc/qt4/html/emb-accel.html
share/doc/qt4/html/emb-charinput.html
share/doc/qt4/html/emb-classes.html
share/doc/qt4/html/emb-differences.html
share/doc/qt4/html/emb-envvars.html
share/doc/qt4/html/emb-features.html
share/doc/qt4/html/emb-fonts.html
share/doc/qt4/html/emb-framebuffer-howto.html
share/doc/qt4/html/emb-install.html
share/doc/qt4/html/emb-makeqpf.html
share/doc/qt4/html/emb-performance.html
share/doc/qt4/html/emb-pointer.html
share/doc/qt4/html/emb-qvfb.html
share/doc/qt4/html/emb-running.html
share/doc/qt4/html/emb-vnc.html
share/doc/qt4/html/embedded-mousecalibration.html
share/doc/qt4/html/environment.html
share/doc/qt4/html/events.html
share/doc/qt4/html/eventsandfilters.html
@ -314,6 +299,7 @@ share/doc/qt4/html/hierarchy.html
share/doc/qt4/html/how-to-learn-qt.html
share/doc/qt4/html/i18n.html
share/doc/qt4/html/images/
share/doc/qt4/html/images/2dpainting-example.png
share/doc/qt4/html/images/abstract-connections.png
share/doc/qt4/html/images/affine-demo.png
share/doc/qt4/html/images/alphafill.png
@ -558,8 +544,10 @@ share/doc/qt4/html/images/linguist-validatepunctuation.png
share/doc/qt4/html/images/loopback-example.png
share/doc/qt4/html/images/macintosh-checkbox.png
share/doc/qt4/html/images/macintosh-combobox.png
share/doc/qt4/html/images/macintosh-dateedit.png
share/doc/qt4/html/images/macintosh-datetimeedit.png
share/doc/qt4/html/images/macintosh-dial.png
share/doc/qt4/html/images/macintosh-doublespinbox.png
share/doc/qt4/html/images/macintosh-frame.png
share/doc/qt4/html/images/macintosh-groupbox.png
share/doc/qt4/html/images/macintosh-horizontalscrollbar.png
@ -575,6 +563,7 @@ share/doc/qt4/html/images/macintosh-spinbox.png
share/doc/qt4/html/images/macintosh-tableview.png
share/doc/qt4/html/images/macintosh-tabwidget.png
share/doc/qt4/html/images/macintosh-textedit.png
share/doc/qt4/html/images/macintosh-timeedit.png
share/doc/qt4/html/images/macintosh-toolbox.png
share/doc/qt4/html/images/macintosh-toolbutton.png
share/doc/qt4/html/images/macintosh-treeview.png
@ -625,10 +614,22 @@ share/doc/qt4/html/images/motif-treeview.png
share/doc/qt4/html/images/movie-example.png
share/doc/qt4/html/images/noforeignkeys.png
share/doc/qt4/html/images/orderform-example.png
share/doc/qt4/html/images/overpainting-example.png
share/doc/qt4/html/images/painterpaths-example.png
share/doc/qt4/html/images/paintsystem-antialiasing.png
share/doc/qt4/html/images/paintsystem-core.png
share/doc/qt4/html/images/paintsystem-devices.png
share/doc/qt4/html/images/paintsystem-fancygradient.png
share/doc/qt4/html/images/paintsystem-gradients.png
share/doc/qt4/html/images/paintsystem-icon.png
share/doc/qt4/html/images/paintsystem-movie.png
share/doc/qt4/html/images/paintsystem-painterpath.png
share/doc/qt4/html/images/paintsystem-stylepainter.png
share/doc/qt4/html/images/paintsystem-svg.png
share/doc/qt4/html/images/palette.png
share/doc/qt4/html/images/pathexample.png
share/doc/qt4/html/images/pathstroke-demo.png
share/doc/qt4/html/images/pbuffers-example.png
share/doc/qt4/html/images/pixelator-example.png
share/doc/qt4/html/images/plaintext-layout.png
share/doc/qt4/html/images/plastique-checkbox.png
@ -656,6 +657,7 @@ share/doc/qt4/html/images/plastique-sizegrip.png
share/doc/qt4/html/images/plastique-slider.png
share/doc/qt4/html/images/plastique-spinbox.png
share/doc/qt4/html/images/plastique-statusbar.png
share/doc/qt4/html/images/plastique-tabbar-truncated.png
share/doc/qt4/html/images/plastique-tabbar.png
share/doc/qt4/html/images/plastique-tableview.png
share/doc/qt4/html/images/plastique-tabwidget.png
@ -666,6 +668,8 @@ share/doc/qt4/html/images/plastique-toolbutton.png
share/doc/qt4/html/images/plastique-treeview.png
share/doc/qt4/html/images/plugandpaint-plugindialog.png
share/doc/qt4/html/images/plugandpaint.png
share/doc/qt4/html/images/propagation-custom.png
share/doc/qt4/html/images/propagation-standard.png
share/doc/qt4/html/images/q3painter_rationale.png
share/doc/qt4/html/images/qcanvasellipse.png
share/doc/qt4/html/images/qcdestyle.png
@ -787,8 +791,11 @@ share/doc/qt4/html/images/qscrollbar-values.png
share/doc/qt4/html/images/qscrollview-cl.png
share/doc/qt4/html/images/qscrollview-vp.png
share/doc/qt4/html/images/qscrollview-vp2.png
share/doc/qt4/html/images/qsortfilterproxymodel-sorting.png
share/doc/qt4/html/images/qspinbox-plusminus.png
share/doc/qt4/html/images/qspinbox-updown.png
share/doc/qt4/html/images/qstatustipevent-action.png
share/doc/qt4/html/images/qstatustipevent-widget.png
share/doc/qt4/html/images/qstyle-comboboxes.png
share/doc/qt4/html/images/qstyleoptiontoolbar-position.png
share/doc/qt4/html/images/qt-colors.png
@ -804,6 +811,15 @@ share/doc/qt4/html/images/qtextblock-sequence.png
share/doc/qt4/html/images/qtextfragment-split.png
share/doc/qt4/html/images/qtextframe-style.png
share/doc/qt4/html/images/qtexttableformat-cell.png
share/doc/qt4/html/images/qtopiacore-architecture.png
share/doc/qt4/html/images/qtopiacore-fontfeatures.png
share/doc/qt4/html/images/qtopiacore-pda.png
share/doc/qt4/html/images/qtopiacore-phone.png
share/doc/qt4/html/images/qtopiacore-qconfigtool.png
share/doc/qt4/html/images/qtopiacore-qvfbfilemenu.png
share/doc/qt4/html/images/qtopiacore-qvfbviewmenu.png
share/doc/qt4/html/images/qtopiacore-runningapplication.png
share/doc/qt4/html/images/qtopiacore-virtualframebuffer.png
share/doc/qt4/html/images/querymodel-example.png
share/doc/qt4/html/images/qurl-authority.png
share/doc/qt4/html/images/qurl-authority2.png
@ -828,6 +844,7 @@ share/doc/qt4/html/images/rintersect.png
share/doc/qt4/html/images/rsubtract.png
share/doc/qt4/html/images/runion.png
share/doc/qt4/html/images/rxor.png
share/doc/qt4/html/images/samplebuffers-example.png
share/doc/qt4/html/images/saxbookmarks-example.png
share/doc/qt4/html/images/screenshot-example.png
share/doc/qt4/html/images/scribble-example.png
@ -852,7 +869,6 @@ share/doc/qt4/html/images/simplewizard-page2.png
share/doc/qt4/html/images/simplewizard-page3.png
share/doc/qt4/html/images/simplewizard.png
share/doc/qt4/html/images/sliders-example.png
share/doc/qt4/html/images/smooth.png
share/doc/qt4/html/images/sortingmodel-example.png
share/doc/qt4/html/images/spinboxdelegate-example.png
share/doc/qt4/html/images/spinboxes-example.png
@ -905,7 +921,6 @@ share/doc/qt4/html/images/trolltech-logo.png
share/doc/qt4/html/images/tutorial8-layout.png
share/doc/qt4/html/images/tutorial8-reallayout.png
share/doc/qt4/html/images/udppackets.png
share/doc/qt4/html/images/unsmooth.png
share/doc/qt4/html/images/whatsthis.png
share/doc/qt4/html/images/wiggly-example.png
share/doc/qt4/html/images/windowflags-example.png
@ -1044,6 +1059,7 @@ share/doc/qt4/html/layouts-flowlayout-main-cpp.html
share/doc/qt4/html/layouts-flowlayout-window-cpp.html
share/doc/qt4/html/layouts-flowlayout-window-h.html
share/doc/qt4/html/layouts-flowlayout.html
share/doc/qt4/html/licenses-fonts.html
share/doc/qt4/html/licenses.html
share/doc/qt4/html/linguist-arrowpad-arrowpad-cpp.html
share/doc/qt4/html/linguist-arrowpad-arrowpad-h.html
@ -1185,6 +1201,16 @@ share/doc/qt4/html/network-torrent.html
share/doc/qt4/html/object.html
share/doc/qt4/html/objectmodel.html
share/doc/qt4/html/objecttrees.html
share/doc/qt4/html/opengl-2dpainting-glwidget-cpp.html
share/doc/qt4/html/opengl-2dpainting-glwidget-h.html
share/doc/qt4/html/opengl-2dpainting-helper-cpp.html
share/doc/qt4/html/opengl-2dpainting-helper-h.html
share/doc/qt4/html/opengl-2dpainting-main-cpp.html
share/doc/qt4/html/opengl-2dpainting-widget-cpp.html
share/doc/qt4/html/opengl-2dpainting-widget-h.html
share/doc/qt4/html/opengl-2dpainting-window-cpp.html
share/doc/qt4/html/opengl-2dpainting-window-h.html
share/doc/qt4/html/opengl-2dpainting.html
share/doc/qt4/html/opengl-grabber-glwidget-cpp.html
share/doc/qt4/html/opengl-grabber-glwidget-h.html
share/doc/qt4/html/opengl-grabber-main-cpp.html
@ -1197,6 +1223,12 @@ share/doc/qt4/html/opengl-hellogl-main-cpp.html
share/doc/qt4/html/opengl-hellogl-window-cpp.html
share/doc/qt4/html/opengl-hellogl-window-h.html
share/doc/qt4/html/opengl-hellogl.html
share/doc/qt4/html/opengl-overpainting-bubble-cpp.html
share/doc/qt4/html/opengl-overpainting-bubble-h.html
share/doc/qt4/html/opengl-overpainting-glwidget-cpp.html
share/doc/qt4/html/opengl-overpainting-glwidget-h.html
share/doc/qt4/html/opengl-overpainting-main-cpp.html
share/doc/qt4/html/opengl-overpainting.html
share/doc/qt4/html/opengl-pbuffers-glwidget-cpp.html
share/doc/qt4/html/opengl-pbuffers-glwidget-h.html
share/doc/qt4/html/opengl-pbuffers-main-cpp.html
@ -1250,6 +1282,7 @@ share/doc/qt4/html/painting-transformations-renderarea-h.html
share/doc/qt4/html/painting-transformations-window-cpp.html
share/doc/qt4/html/painting-transformations-window-h.html
share/doc/qt4/html/painting-transformations.html
share/doc/qt4/html/paintsystem.html
share/doc/qt4/html/plugins-howto.html
share/doc/qt4/html/plugins.html
share/doc/qt4/html/porting4-designer.html
@ -2070,6 +2103,8 @@ share/doc/qt4/html/qlinkedlist-qt3.html
share/doc/qt4/html/qlinkedlist.html
share/doc/qt4/html/qlinkedlistiterator-members.html
share/doc/qt4/html/qlinkedlistiterator.html
share/doc/qt4/html/qlinuxfbscreen-members.html
share/doc/qt4/html/qlinuxfbscreen.html
share/doc/qt4/html/qlist-const-iterator-members.html
share/doc/qt4/html/qlist-const-iterator.html
share/doc/qt4/html/qlist-iterator-members.html
@ -2239,7 +2274,6 @@ share/doc/qt4/html/qpl.html
share/doc/qt4/html/qplastiquestyle-members.html
share/doc/qt4/html/qplastiquestyle.html
share/doc/qt4/html/qpluginloader-members.html
share/doc/qt4/html/qpluginloader-obsolete.html
share/doc/qt4/html/qpluginloader.html
share/doc/qt4/html/qpoint-members.html
share/doc/qt4/html/qpoint.html
@ -2301,6 +2335,8 @@ share/doc/qt4/html/qrubberband-members.html
share/doc/qt4/html/qrubberband.html
share/doc/qt4/html/qscreen-members.html
share/doc/qt4/html/qscreen.html
share/doc/qt4/html/qscreencursor-members.html
share/doc/qt4/html/qscreencursor.html
share/doc/qt4/html/qscreendriverfactory-members.html
share/doc/qt4/html/qscreendriverfactory.html
share/doc/qt4/html/qscreendriverplugin-members.html
@ -2684,6 +2720,33 @@ share/doc/qt4/html/qtooltip-members.html
share/doc/qt4/html/qtooltip-qt3.html
share/doc/qt4/html/qtooltip.html
share/doc/qt4/html/qtopengl.html
share/doc/qt4/html/qtopiacore-accel.html
share/doc/qt4/html/qtopiacore-charinput.html
share/doc/qt4/html/qtopiacore-crosscompiling.html
share/doc/qt4/html/qtopiacore-deployment.html
share/doc/qt4/html/qtopiacore-differences.html
share/doc/qt4/html/qtopiacore-envvars.html
share/doc/qt4/html/qtopiacore-features.html
share/doc/qt4/html/qtopiacore-fonts.html
share/doc/qt4/html/qtopiacore-install.html
share/doc/qt4/html/qtopiacore-makeqpf.html
share/doc/qt4/html/qtopiacore-mousecalibration-calibration-cpp.html
share/doc/qt4/html/qtopiacore-mousecalibration-calibration-h.html
share/doc/qt4/html/qtopiacore-mousecalibration-main-cpp.html
share/doc/qt4/html/qtopiacore-mousecalibration-scribblewidget-cpp.html
share/doc/qt4/html/qtopiacore-mousecalibration-scribblewidget-h.html
share/doc/qt4/html/qtopiacore-mousecalibration.html
share/doc/qt4/html/qtopiacore-performance.html
share/doc/qt4/html/qtopiacore-pointer.html
share/doc/qt4/html/qtopiacore-porting.html
share/doc/qt4/html/qtopiacore-qvfb.html
share/doc/qt4/html/qtopiacore-running.html
share/doc/qt4/html/qtopiacore-testingframebuffer.html
share/doc/qt4/html/qtopiacore-vnc.html
share/doc/qt4/html/qtopiacore.html
share/doc/qt4/html/qtplugin.html
share/doc/qt4/html/qtransformedscreen-members.html
share/doc/qt4/html/qtransformedscreen.html
share/doc/qt4/html/qtranslator-members.html
share/doc/qt4/html/qtranslator-qt3.html
share/doc/qt4/html/qtranslator.html
@ -2726,6 +2789,10 @@ share/doc/qt4/html/qvector-members.html
share/doc/qt4/html/qvector.html
share/doc/qt4/html/qvectoriterator-members.html
share/doc/qt4/html/qvectoriterator.html
share/doc/qt4/html/qvfbscreen-members.html
share/doc/qt4/html/qvfbscreen.html
share/doc/qt4/html/qvncscreen-members.html
share/doc/qt4/html/qvncscreen.html
share/doc/qt4/html/qwaitcondition-members.html
share/doc/qt4/html/qwaitcondition.html
share/doc/qt4/html/qwhatsthis-members.html
@ -2758,7 +2825,12 @@ share/doc/qt4/html/qwritelocker.html
share/doc/qt4/html/qws.html
share/doc/qt4/html/qwscalibratedmousehandler-members.html
share/doc/qt4/html/qwscalibratedmousehandler.html
share/doc/qt4/html/qwsclient-members.html
share/doc/qt4/html/qwsclient.html
share/doc/qt4/html/qwsevent-members.html
share/doc/qt4/html/qwsevent.html
share/doc/qt4/html/qwsinputmethod-members.html
share/doc/qt4/html/qwsinputmethod-obsolete.html
share/doc/qt4/html/qwsinputmethod.html
share/doc/qt4/html/qwskeyboardhandler-members.html
share/doc/qt4/html/qwskeyboardhandler.html
@ -2766,13 +2838,14 @@ share/doc/qt4/html/qwsmousehandler-members.html
share/doc/qt4/html/qwsmousehandler.html
share/doc/qt4/html/qwspointercalibrationdata-members.html
share/doc/qt4/html/qwspointercalibrationdata.html
share/doc/qt4/html/qwsscreensaver-members.html
share/doc/qt4/html/qwsscreensaver.html
share/doc/qt4/html/qwsserver-keyboardfilter-members.html
share/doc/qt4/html/qwsserver-keyboardfilter.html
share/doc/qt4/html/qwsserver-keymap-members.html
share/doc/qt4/html/qwsserver-keymap.html
share/doc/qt4/html/qwsserver-keyoverride-members.html
share/doc/qt4/html/qwsserver-keyoverride.html
share/doc/qt4/html/qwsserver-members.html
share/doc/qt4/html/qwsserver-obsolete.html
share/doc/qt4/html/qwsserver-qt3.html
share/doc/qt4/html/qwsserver.html
share/doc/qt4/html/qwstslibmousehandler-members.html