Skip site navigation (1)Skip section navigation (2)
Date:      17 Mar 2001 17:26:06 +0100
From:      Dag-Erling Smorgrav <des@ofug.org>
To:        ports@FreeBSD.ORG
Cc:        will@FreeBSD.ORG
Subject:   Re: Qt 2 breakage
Message-ID:  <xzpd7bgcqg1.fsf@flood.ping.uio.no>
In-Reply-To: Dag-Erling Smorgrav's message of "17 Mar 2001 16:35:56 %2B0100"
References:  <xzpd7bge7c3.fsf@flood.ping.uio.no>

next in thread | previous in thread | raw e-mail | index | archive | help
--=-=-=

Dag-Erling Smorgrav <des@ofug.org> writes:
> A patch for the qt23 port is attached.

I forgot the plist. Here's an updated patch.

DES
-- 
Dag-Erling Smorgrav - des@ofug.org


--=-=-=
Content-Type: text/x-patch
Content-Disposition: attachment; filename=qt.diff

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/x11-toolkits/qt23/Makefile,v
retrieving revision 1.79
diff -u -r1.79 Makefile
--- Makefile	2001/03/14 01:29:15	1.79
+++ Makefile	2001/03/17 16:24:49
@@ -54,28 +54,12 @@
 CFLAGS+=	-O0
 .endif
 
-pre-fetch:
-.if exists(${X11BASE}/lib/libqt2.so.3)
-.if !defined(WANT_STATIC)
-	@${ECHO} "An older version of QT2 is installed.  To avoid clobbering"
-	@${ECHO} "that installation, deinstall it and then install this port."
-	@${ECHO} "Note that this port contains beta-quality source code and"
-	@${ECHO} "must be used only wherever absolutely needed, such as for"
-	@${ECHO} "KDE 2.0 and later."
-	@${FALSE}
-.endif
-.endif
-
 pre-configure:
 	${PERL} -pi -e "s,gcc,${CC},g; s,g\+\+,${CXX},g; \
 			s,/usr/X11R6,${X11BASE},g; \
 			s,-pipe -O2,${CXXFLAGS} -frerun-cse-after-loop,g" ${CONFIG}
-	${PERL} -pi -e "s,VER_MAJ = 2,VER_MAJ = 4,g; \
-			s,TARGET	= qt,TARGET = qt2,g" ${WRKSRC}/src/Makefile.in
-	${PERL} -pi -e "s@TARGET\t= moc@TARGET = moc2@g" ${WRKSRC}/src/moc/Makefile.in
-	${PERL} -pi -e "s,rm -f bin/moc,rm -f  bin/moc2,g; \
-			s,cp src/moc/moc bin/moc,cp src/moc/moc2 bin/moc2,g; \
-			s,symlinks  src-moc src-mt sub-src sub-tools sub-tutorial sub-examples,symlinks src-moc src-mt sub-src sub-tools,g" \
+	${PERL} -pi -e "s,VER_MAJ = 2,VER_MAJ = 4,g" ${WRKSRC}/src/Makefile.in
+	${PERL} -pi -e "s,symlinks  src-moc src-mt sub-src sub-tools sub-tutorial sub-examples,symlinks src-moc src-mt sub-src sub-tools,g" \
 		${WRKSRC}/Makefile
 
 post-configure:
@@ -84,8 +68,8 @@
 # XXX: This target looks like crap now.
 do-install:
 .if (${PORTNAME} == "qt")
-	${MKDIR} ${PREFIX}/include/qt2
-.for BIN in moc2 uic
+	${MKDIR} ${PREFIX}/include/qt
+.for BIN in moc uic
 	${INSTALL_PROGRAM} ${WRKSRC}/bin/${BIN} ${PREFIX}/bin
 .endfor
 .for SCRIPT in findtr qt20fix qtrename140
@@ -93,28 +77,28 @@
 .endfor
 	${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/include/qt2
 .if !defined(WANT_STATIC)
-.for LIB in qt2 qt2-mt
+.for LIB in qt qt-mt
 	${INSTALL_PROGRAM} ${WRKSRC}/lib/lib${LIB}.so.4 ${PREFIX}/lib
 	${LN} -sf ${PREFIX}/lib/lib${LIB}.so.4 ${PREFIX}/lib/lib${LIB}.so
 .endfor
 	${INSTALL_PROGRAM} ${WRKSRC}/lib/libqutil.so.1 ${PREFIX}/lib
 	${LN} -sf ${PREFIX}/lib/libqutil.so.1 ${PREFIX}/lib/libqutil.so
 .else
-.for LIB in qt2 qutil
+.for LIB in qt qutil
 	${INSTALL_DATA} ${WRKSRC}/lib/lib${LIB}.a ${PREFIX}/lib
 .endfor
 .endif
 .if !defined(NOPORTDOCS)
-	${MKDIR} ${PREFIX}/share/doc/qt2/html
+	${MKDIR} ${PREFIX}/share/doc/qt/html
 .for FILE in ANNOUNCE FAQ PORTING README README.QT
-	${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/share/doc/qt2
+	${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/share/doc/qt
 .endfor
 .for SUFFIX in g1n html png
 	(for FILE in ${WRKSRC}/doc/html/*.${SUFFIX}; do \
-		${INSTALL_DATA} $$FILE ${PREFIX}/share/doc/qt2/html; done)
+		${INSTALL_DATA} $$FILE ${PREFIX}/share/doc/qt/html; done)
 .endfor
 .for FILE in index titleindex propertyindex whatsthis
-	${INSTALL_DATA} ${WRKSRC}/doc/html/${FILE} ${PREFIX}/share/doc/qt2/html
+	${INSTALL_DATA} ${WRKSRC}/doc/html/${FILE} ${PREFIX}/share/doc/qt/html
 .endfor
 	${INSTALL_MAN} ${WRKSRC}/doc/man/man3/q* ${PREFIX}/man/man3
 .endif
@@ -124,7 +108,7 @@
 .if (${PORTNAME} == "qt")
 post-install:
 	${CP} ${TMPPLIST} ${TMPPLIST}.new
-	${SED} -e "s/libqt2\/.so/libqt2\.a/" -e "s/.*libqt2\.a\.\d\n//" \
+	${SED} -e "s/libqt\/.so/libqt\.a/" -e "s/.*libqt\.a\.\d\n//" \
 		-e "s/libqutil\.so/libqutil.a/" -e "s/.*libqutil\.a\.\d\n//" \
 			${TMPPLIST}.new > ${TMPPLIST}
 .endif
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/x11-toolkits/qt23/pkg-plist,v
retrieving revision 1.40
diff -u -r1.40 pkg-plist
--- pkg-plist	2001/03/14 01:29:15	1.40
+++ pkg-plist	2001/03/17 16:24:32
@@ -1,1573 +1,1573 @@
 bin/findtr
-bin/moc2
+bin/moc
 bin/qt20fix
 bin/qtrename140
 bin/uic
-include/qt2/jri.h
-include/qt2/jritypes.h
-include/qt2/npapi.h
-include/qt2/npupp.h
-include/qt2/q1xcompatibility.h
-include/qt2/qabstractlayout.h
-include/qt2/qaccel.h
-include/qt2/qaction.h
-include/qt2/qapp.h
-include/qt2/qapplication.h
-include/qt2/qarray.h
-include/qt2/qasciicache.h
-include/qt2/qasciidict.h
-include/qt2/qasyncimageio.h
-include/qt2/qasyncio.h
-include/qt2/qbig5codec.h
-include/qt2/qbitarray.h
-include/qt2/qbitarry.h
-include/qt2/qbitmap.h
-include/qt2/qbrush.h
-include/qt2/qbttngrp.h
-include/qt2/qbuffer.h
-include/qt2/qbutton.h
-include/qt2/qbuttongroup.h
-include/qt2/qcache.h
-include/qt2/qcanvas.h
-include/qt2/qcdestyle.h
-include/qt2/qcheckbox.h
-include/qt2/qchkbox.h
-include/qt2/qclipboard.h
-include/qt2/qclipbrd.h
-include/qt2/qcollect.h
-include/qt2/qcollection.h
-include/qt2/qcolor.h
-include/qt2/qcolordialog.h
-include/qt2/qcombo.h
-include/qt2/qcombobox.h
-include/qt2/qcommonstyle.h
-include/qt2/qconfig-dist.h
-include/qt2/qconfig-large.h
-include/qt2/qconfig-medium.h
-include/qt2/qconfig-minimal.h
-include/qt2/qconfig-small.h
-include/qt2/qconfig.h
-include/qt2/qconnect.h
-include/qt2/qconnection.h
-include/qt2/qcstring.h
-include/qt2/qcursor.h
-include/qt2/qdatastream.h
-include/qt2/qdatetime.h
-include/qt2/qdatetm.h
-include/qt2/qdial.h
-include/qt2/qdialog.h
-include/qt2/qdict.h
-include/qt2/qdir.h
-include/qt2/qdns.h
-include/qt2/qdom.h
-include/qt2/qdragobject.h
-include/qt2/qdrawutil.h
-include/qt2/qdrawutl.h
-include/qt2/qdropsite.h
-include/qt2/qdstream.h
-include/qt2/qeucjpcodec.h
-include/qt2/qeuckrcodec.h
-include/qt2/qevent.h
-include/qt2/qfeatures.h
-include/qt2/qfile.h
-include/qt2/qfiledef.h
-include/qt2/qfiledialog.h
-include/qt2/qfiledlg.h
-include/qt2/qfileinf.h
-include/qt2/qfileinfo.h
-include/qt2/qfocusdata.h
-include/qt2/qfont.h
-include/qt2/qfontdatabase.h
-include/qt2/qfontdialog.h
-include/qt2/qfontdta.h
-include/qt2/qfontinf.h
-include/qt2/qfontinfo.h
-include/qt2/qfontmet.h
-include/qt2/qfontmetrics.h
-include/qt2/qframe.h
-include/qt2/qftp.h
-include/qt2/qgarray.h
-include/qt2/qgbkcodec.h
-include/qt2/qgcache.h
-include/qt2/qgdict.h
-include/qt2/qgeneric.h
-include/qt2/qgif.h
-include/qt2/qgl.h
-include/qt2/qglist.h
-include/qt2/qglobal.h
-include/qt2/qgrid.h
-include/qt2/qgroupbox.h
-include/qt2/qgrpbox.h
-include/qt2/qguardedptr.h
-include/qt2/qgvector.h
-include/qt2/qhbox.h
-include/qt2/qhbuttongroup.h
-include/qt2/qheader.h
-include/qt2/qhgroupbox.h
-include/qt2/qhostaddress.h
-include/qt2/qiconset.h
-include/qt2/qiconview.h
-include/qt2/qimage.h
-include/qt2/qinputdialog.h
-include/qt2/qintcach.h
-include/qt2/qintcache.h
-include/qt2/qintdict.h
-include/qt2/qinterlacestyle.h
-include/qt2/qiodev.h
-include/qt2/qiodevice.h
-include/qt2/qjiscodec.h
-include/qt2/qjpegio.h
-include/qt2/qjpunicode.h
-include/qt2/qkeycode.h
-include/qt2/qkoi8codec.h
-include/qt2/qlabel.h
-include/qt2/qlayout.h
-include/qt2/qlcdnum.h
-include/qt2/qlcdnumber.h
-include/qt2/qlined.h
-include/qt2/qlineedit.h
-include/qt2/qlist.h
-include/qt2/qlistbox.h
-include/qt2/qlistview.h
-include/qt2/qlocalfs.h
-include/qt2/qmainwindow.h
-include/qt2/qmap.h
-include/qt2/qmenubar.h
-include/qt2/qmenudata.h
-include/qt2/qmenudta.h
-include/qt2/qmessagebox.h
-include/qt2/qmetaobj.h
-include/qt2/qmetaobject.h
-include/qt2/qmime.h
-include/qt2/qmlined.h
-include/qt2/qmngio.h
-include/qt2/qmodules.h
-include/qt2/qmotifplusstyle.h
-include/qt2/qmotifstyle.h
-include/qt2/qmovie.h
-include/qt2/qmsgbox.h
-include/qt2/qmultilinedit.h
-include/qt2/qmultilineedit.h
-include/qt2/qnamespace.h
-include/qt2/qnetwork.h
-include/qt2/qnetworkprotocol.h
-include/qt2/qnp.h
-include/qt2/qobjcoll.h
-include/qt2/qobjdefs.h
-include/qt2/qobject.h
-include/qt2/qobjectdefs.h
-include/qt2/qobjectdict.h
-include/qt2/qobjectlist.h
-include/qt2/qpaintd.h
-include/qt2/qpaintdc.h
-include/qt2/qpaintdevice.h
-include/qt2/qpaintdevicedefs.h
-include/qt2/qpaintdevicemetrics.h
-include/qt2/qpainter.h
-include/qt2/qpalette.h
-include/qt2/qpdevmet.h
-include/qt2/qpen.h
-include/qt2/qpicture.h
-include/qt2/qpixmap.h
-include/qt2/qpixmapcache.h
-include/qt2/qplatinumstyle.h
-include/qt2/qpmcache.h
-include/qt2/qpngio.h
-include/qt2/qpntarry.h
-include/qt2/qpoint.h
-include/qt2/qpointarray.h
-include/qt2/qpolygonscanner.h
-include/qt2/qpopmenu.h
-include/qt2/qpopupmenu.h
-include/qt2/qprintdialog.h
-include/qt2/qprinter.h
-include/qt2/qprndlg.h
-include/qt2/qprogbar.h
-include/qt2/qprogdlg.h
-include/qt2/qprogressbar.h
-include/qt2/qprogressdialog.h
-include/qt2/qpsprn.h
-include/qt2/qptrdict.h
-include/qt2/qpushbt.h
-include/qt2/qpushbutton.h
-include/qt2/qqueue.h
-include/qt2/qradiobt.h
-include/qt2/qradiobutton.h
-include/qt2/qrangecontrol.h
-include/qt2/qrangect.h
-include/qt2/qrect.h
-include/qt2/qregexp.h
-include/qt2/qregion.h
-include/qt2/qrtlcodec.h
-include/qt2/qscrbar.h
-include/qt2/qscrollbar.h
-include/qt2/qscrollview.h
-include/qt2/qsemimodal.h
-include/qt2/qserversocket.h
-include/qt2/qsession.h
-include/qt2/qsessionmanager.h
-include/qt2/qsgistyle.h
-include/qt2/qshared.h
-include/qt2/qsignal.h
-include/qt2/qsignalmapper.h
-include/qt2/qsignalslotimp.h
-include/qt2/qsimplerichtext.h
-include/qt2/qsize.h
-include/qt2/qsizegrip.h
-include/qt2/qsizepolicy.h
-include/qt2/qsjiscodec.h
-include/qt2/qslider.h
-include/qt2/qsmartptr.h
-include/qt2/qsocket.h
-include/qt2/qsocketdevice.h
-include/qt2/qsocketnotifier.h
-include/qt2/qsocknot.h
-include/qt2/qsortedlist.h
-include/qt2/qsound.h
-include/qt2/qspinbox.h
-include/qt2/qsplitter.h
-include/qt2/qstack.h
-include/qt2/qstatusbar.h
-include/qt2/qstring.h
-include/qt2/qstringlist.h
-include/qt2/qstrlist.h
-include/qt2/qstrvec.h
-include/qt2/qstyle.h
-include/qt2/qstylesheet.h
-include/qt2/qt.h
-include/qt2/qt_x11.h
-include/qt2/qtabbar.h
-include/qt2/qtabdialog.h
-include/qt2/qtabdlg.h
-include/qt2/qtable.h
-include/qt2/qtableview.h
-include/qt2/qtablevw.h
-include/qt2/qtabwidget.h
-include/qt2/qtextbrowser.h
-include/qt2/qtextcodec.h
-include/qt2/qtextstream.h
-include/qt2/qtextview.h
-include/qt2/qthread.h
-include/qt2/qtimer.h
-include/qt2/qtl.h
-include/qt2/qtoolbar.h
-include/qt2/qtoolbutton.h
-include/qt2/qtooltip.h
-include/qt2/qtranslator.h
-include/qt2/qtsciicodec.h
-include/qt2/qtstream.h
-include/qt2/qurl.h
-include/qt2/qurlinfo.h
-include/qt2/qurloperator.h
-include/qt2/qutfcodec.h
-include/qt2/qvalidator.h
-include/qt2/qvaluelist.h
-include/qt2/qvaluestack.h
-include/qt2/qvariant.h
-include/qt2/qvbox.h
-include/qt2/qvbuttongroup.h
-include/qt2/qvector.h
-include/qt2/qvfbhdr.h
-include/qt2/qvgroupbox.h
-include/qt2/qwhatsthis.h
-include/qt2/qwidcoll.h
-include/qt2/qwidget.h
-include/qt2/qwidgetintdict.h
-include/qt2/qwidgetlist.h
-include/qt2/qwidgetstack.h
-include/qt2/qwindefs.h
-include/qt2/qwindow.h
-include/qt2/qwindowdefs.h
-include/qt2/qwindowsstyle.h
-include/qt2/qwizard.h
-include/qt2/qwmatrix.h
-include/qt2/qworkspace.h
-include/qt2/qxml.h
-include/qt2/qxt.h
-lib/libqt2-mt.so
-lib/libqt2-mt.so.4
-lib/libqt2.so
-lib/libqt2.so.4
+include/qt/jri.h
+include/qt/jritypes.h
+include/qt/npapi.h
+include/qt/npupp.h
+include/qt/q1xcompatibility.h
+include/qt/qabstractlayout.h
+include/qt/qaccel.h
+include/qt/qaction.h
+include/qt/qapp.h
+include/qt/qapplication.h
+include/qt/qarray.h
+include/qt/qasciicache.h
+include/qt/qasciidict.h
+include/qt/qasyncimageio.h
+include/qt/qasyncio.h
+include/qt/qbig5codec.h
+include/qt/qbitarray.h
+include/qt/qbitarry.h
+include/qt/qbitmap.h
+include/qt/qbrush.h
+include/qt/qbttngrp.h
+include/qt/qbuffer.h
+include/qt/qbutton.h
+include/qt/qbuttongroup.h
+include/qt/qcache.h
+include/qt/qcanvas.h
+include/qt/qcdestyle.h
+include/qt/qcheckbox.h
+include/qt/qchkbox.h
+include/qt/qclipboard.h
+include/qt/qclipbrd.h
+include/qt/qcollect.h
+include/qt/qcollection.h
+include/qt/qcolor.h
+include/qt/qcolordialog.h
+include/qt/qcombo.h
+include/qt/qcombobox.h
+include/qt/qcommonstyle.h
+include/qt/qconfig-dist.h
+include/qt/qconfig-large.h
+include/qt/qconfig-medium.h
+include/qt/qconfig-minimal.h
+include/qt/qconfig-small.h
+include/qt/qconfig.h
+include/qt/qconnect.h
+include/qt/qconnection.h
+include/qt/qcstring.h
+include/qt/qcursor.h
+include/qt/qdatastream.h
+include/qt/qdatetime.h
+include/qt/qdatetm.h
+include/qt/qdial.h
+include/qt/qdialog.h
+include/qt/qdict.h
+include/qt/qdir.h
+include/qt/qdns.h
+include/qt/qdom.h
+include/qt/qdragobject.h
+include/qt/qdrawutil.h
+include/qt/qdrawutl.h
+include/qt/qdropsite.h
+include/qt/qdstream.h
+include/qt/qeucjpcodec.h
+include/qt/qeuckrcodec.h
+include/qt/qevent.h
+include/qt/qfeatures.h
+include/qt/qfile.h
+include/qt/qfiledef.h
+include/qt/qfiledialog.h
+include/qt/qfiledlg.h
+include/qt/qfileinf.h
+include/qt/qfileinfo.h
+include/qt/qfocusdata.h
+include/qt/qfont.h
+include/qt/qfontdatabase.h
+include/qt/qfontdialog.h
+include/qt/qfontdta.h
+include/qt/qfontinf.h
+include/qt/qfontinfo.h
+include/qt/qfontmet.h
+include/qt/qfontmetrics.h
+include/qt/qframe.h
+include/qt/qftp.h
+include/qt/qgarray.h
+include/qt/qgbkcodec.h
+include/qt/qgcache.h
+include/qt/qgdict.h
+include/qt/qgeneric.h
+include/qt/qgif.h
+include/qt/qgl.h
+include/qt/qglist.h
+include/qt/qglobal.h
+include/qt/qgrid.h
+include/qt/qgroupbox.h
+include/qt/qgrpbox.h
+include/qt/qguardedptr.h
+include/qt/qgvector.h
+include/qt/qhbox.h
+include/qt/qhbuttongroup.h
+include/qt/qheader.h
+include/qt/qhgroupbox.h
+include/qt/qhostaddress.h
+include/qt/qiconset.h
+include/qt/qiconview.h
+include/qt/qimage.h
+include/qt/qinputdialog.h
+include/qt/qintcach.h
+include/qt/qintcache.h
+include/qt/qintdict.h
+include/qt/qinterlacestyle.h
+include/qt/qiodev.h
+include/qt/qiodevice.h
+include/qt/qjiscodec.h
+include/qt/qjpegio.h
+include/qt/qjpunicode.h
+include/qt/qkeycode.h
+include/qt/qkoi8codec.h
+include/qt/qlabel.h
+include/qt/qlayout.h
+include/qt/qlcdnum.h
+include/qt/qlcdnumber.h
+include/qt/qlined.h
+include/qt/qlineedit.h
+include/qt/qlist.h
+include/qt/qlistbox.h
+include/qt/qlistview.h
+include/qt/qlocalfs.h
+include/qt/qmainwindow.h
+include/qt/qmap.h
+include/qt/qmenubar.h
+include/qt/qmenudata.h
+include/qt/qmenudta.h
+include/qt/qmessagebox.h
+include/qt/qmetaobj.h
+include/qt/qmetaobject.h
+include/qt/qmime.h
+include/qt/qmlined.h
+include/qt/qmngio.h
+include/qt/qmodules.h
+include/qt/qmotifplusstyle.h
+include/qt/qmotifstyle.h
+include/qt/qmovie.h
+include/qt/qmsgbox.h
+include/qt/qmultilinedit.h
+include/qt/qmultilineedit.h
+include/qt/qnamespace.h
+include/qt/qnetwork.h
+include/qt/qnetworkprotocol.h
+include/qt/qnp.h
+include/qt/qobjcoll.h
+include/qt/qobjdefs.h
+include/qt/qobject.h
+include/qt/qobjectdefs.h
+include/qt/qobjectdict.h
+include/qt/qobjectlist.h
+include/qt/qpaintd.h
+include/qt/qpaintdc.h
+include/qt/qpaintdevice.h
+include/qt/qpaintdevicedefs.h
+include/qt/qpaintdevicemetrics.h
+include/qt/qpainter.h
+include/qt/qpalette.h
+include/qt/qpdevmet.h
+include/qt/qpen.h
+include/qt/qpicture.h
+include/qt/qpixmap.h
+include/qt/qpixmapcache.h
+include/qt/qplatinumstyle.h
+include/qt/qpmcache.h
+include/qt/qpngio.h
+include/qt/qpntarry.h
+include/qt/qpoint.h
+include/qt/qpointarray.h
+include/qt/qpolygonscanner.h
+include/qt/qpopmenu.h
+include/qt/qpopupmenu.h
+include/qt/qprintdialog.h
+include/qt/qprinter.h
+include/qt/qprndlg.h
+include/qt/qprogbar.h
+include/qt/qprogdlg.h
+include/qt/qprogressbar.h
+include/qt/qprogressdialog.h
+include/qt/qpsprn.h
+include/qt/qptrdict.h
+include/qt/qpushbt.h
+include/qt/qpushbutton.h
+include/qt/qqueue.h
+include/qt/qradiobt.h
+include/qt/qradiobutton.h
+include/qt/qrangecontrol.h
+include/qt/qrangect.h
+include/qt/qrect.h
+include/qt/qregexp.h
+include/qt/qregion.h
+include/qt/qrtlcodec.h
+include/qt/qscrbar.h
+include/qt/qscrollbar.h
+include/qt/qscrollview.h
+include/qt/qsemimodal.h
+include/qt/qserversocket.h
+include/qt/qsession.h
+include/qt/qsessionmanager.h
+include/qt/qsgistyle.h
+include/qt/qshared.h
+include/qt/qsignal.h
+include/qt/qsignalmapper.h
+include/qt/qsignalslotimp.h
+include/qt/qsimplerichtext.h
+include/qt/qsize.h
+include/qt/qsizegrip.h
+include/qt/qsizepolicy.h
+include/qt/qsjiscodec.h
+include/qt/qslider.h
+include/qt/qsmartptr.h
+include/qt/qsocket.h
+include/qt/qsocketdevice.h
+include/qt/qsocketnotifier.h
+include/qt/qsocknot.h
+include/qt/qsortedlist.h
+include/qt/qsound.h
+include/qt/qspinbox.h
+include/qt/qsplitter.h
+include/qt/qstack.h
+include/qt/qstatusbar.h
+include/qt/qstring.h
+include/qt/qstringlist.h
+include/qt/qstrlist.h
+include/qt/qstrvec.h
+include/qt/qstyle.h
+include/qt/qstylesheet.h
+include/qt/qt.h
+include/qt/qt_x11.h
+include/qt/qtabbar.h
+include/qt/qtabdialog.h
+include/qt/qtabdlg.h
+include/qt/qtable.h
+include/qt/qtableview.h
+include/qt/qtablevw.h
+include/qt/qtabwidget.h
+include/qt/qtextbrowser.h
+include/qt/qtextcodec.h
+include/qt/qtextstream.h
+include/qt/qtextview.h
+include/qt/qthread.h
+include/qt/qtimer.h
+include/qt/qtl.h
+include/qt/qtoolbar.h
+include/qt/qtoolbutton.h
+include/qt/qtooltip.h
+include/qt/qtranslator.h
+include/qt/qtsciicodec.h
+include/qt/qtstream.h
+include/qt/qurl.h
+include/qt/qurlinfo.h
+include/qt/qurloperator.h
+include/qt/qutfcodec.h
+include/qt/qvalidator.h
+include/qt/qvaluelist.h
+include/qt/qvaluestack.h
+include/qt/qvariant.h
+include/qt/qvbox.h
+include/qt/qvbuttongroup.h
+include/qt/qvector.h
+include/qt/qvfbhdr.h
+include/qt/qvgroupbox.h
+include/qt/qwhatsthis.h
+include/qt/qwidcoll.h
+include/qt/qwidget.h
+include/qt/qwidgetintdict.h
+include/qt/qwidgetlist.h
+include/qt/qwidgetstack.h
+include/qt/qwindefs.h
+include/qt/qwindow.h
+include/qt/qwindowdefs.h
+include/qt/qwindowsstyle.h
+include/qt/qwizard.h
+include/qt/qwmatrix.h
+include/qt/qworkspace.h
+include/qt/qxml.h
+include/qt/qxt.h
+lib/libqt-mt.so
+lib/libqt-mt.so.4
+lib/libqt.so
+lib/libqt.so.4
 lib/libqutil.so
 lib/libqutil.so.1
-share/doc/qt2/ANNOUNCE
-share/doc/qt2/FAQ
-share/doc/qt2/PORTING
-share/doc/qt2/README
-share/doc/qt2/README.QT
-share/doc/qt2/html/HOWTO-framebuffer.html
-share/doc/qt2/html/aboutqt.html
-share/doc/qt2/html/abstractwidgets.html
-share/doc/qt2/html/accel.html
-share/doc/qt2/html/accelerators.html
-share/doc/qt2/html/aclock-main-cpp.html
-share/doc/qt2/html/action-main-cpp.html
-share/doc/qt2/html/addressbook-main-cpp.html
-share/doc/qt2/html/advanced.html
-share/doc/qt2/html/annotated.html
-share/doc/qt2/html/appearance.html
-share/doc/qt2/html/appicon.html
-share/doc/qt2/html/application-main-cpp.html
-share/doc/qt2/html/application.html
-share/doc/qt2/html/basic.html
-share/doc/qt2/html/bearings.png
-share/doc/qt2/html/biff-main-cpp.html
-share/doc/qt2/html/book.png
-share/doc/qt2/html/bughowto.html
-share/doc/qt2/html/buttongroup-m.png
-share/doc/qt2/html/buttongroup-w.png
-share/doc/qt2/html/buttongroups-main-cpp.html
-share/doc/qt2/html/buyhowto.html
-share/doc/qt2/html/canvas.html
-share/doc/qt2/html/casestudy-qws.html
-share/doc/qt2/html/changes21.html
-share/doc/qt2/html/changes211.html
-share/doc/qt2/html/changes22.html
-share/doc/qt2/html/changes23.html
-share/doc/qt2/html/charinput-qws.html
-share/doc/qt2/html/checklists-main-cpp.html
-share/doc/qt2/html/classes.html
-share/doc/qt2/html/collection.html
-share/doc/qt2/html/commonproblems.html
-share/doc/qt2/html/coordsys.html
-share/doc/qt2/html/coordsys.png
-share/doc/qt2/html/credits.html
-share/doc/qt2/html/cursor-cursor-cpp.html
-share/doc/qt2/html/customlayout-main-cpp.html
-share/doc/qt2/html/customlayout.html
-share/doc/qt2/html/datastreamformat.html
-share/doc/qt2/html/dclock-main-cpp.html
-share/doc/qt2/html/debug.html
-share/doc/qt2/html/design.html
-share/doc/qt2/html/designer.html
-share/doc/qt2/html/designer.png
-share/doc/qt2/html/desktop-desktop-cpp.html
-share/doc/qt2/html/dialogs.html
-share/doc/qt2/html/dirview-main-cpp.html
-share/doc/qt2/html/dnd.html
-share/doc/qt2/html/dochead.png
-share/doc/qt2/html/draganddrop.html
-share/doc/qt2/html/drawdemo-drawdemo-cpp.html
-share/doc/qt2/html/drawing.html
-share/doc/qt2/html/drawlines-connect-cpp.html
-share/doc/qt2/html/easteregg.html
-share/doc/qt2/html/easteregg2.html
-share/doc/qt2/html/embedclasses.html
-share/doc/qt2/html/environment.html
-share/doc/qt2/html/envvars.html
-share/doc/qt2/html/eventsandfilters.html
-share/doc/qt2/html/examples.html
-share/doc/qt2/html/face.png
-share/doc/qt2/html/features.html
-share/doc/qt2/html/fileiconview-main-cpp.html
-share/doc/qt2/html/focus.html
-share/doc/qt2/html/fontdir.html
-share/doc/qt2/html/fonts-qws.html
-share/doc/qt2/html/forever-forever-cpp.html
-share/doc/qt2/html/frames.png
-share/doc/qt2/html/functions.html
-share/doc/qt2/html/geomanagement.html
-share/doc/qt2/html/geometry.html
-share/doc/qt2/html/geometry.png
-share/doc/qt2/html/gpl.html
-share/doc/qt2/html/graph.g1n
-share/doc/qt2/html/grapher-grapher-cpp.html
-share/doc/qt2/html/gridlayout.png
-share/doc/qt2/html/groupbox-m.png
-share/doc/qt2/html/groupbox-w.png
-share/doc/qt2/html/guibooks.html
-share/doc/qt2/html/headers.html
-share/doc/qt2/html/hello-main-cpp.html
-share/doc/qt2/html/helpsystem.html
-share/doc/qt2/html/helpviewer-main-cpp.html
-share/doc/qt2/html/hierarchy.html
-share/doc/qt2/html/i18n-main-cpp.html
-share/doc/qt2/html/i18n.html
-share/doc/qt2/html/iconview-main-cpp.html
-share/doc/qt2/html/iconview.html
-share/doc/qt2/html/imageio.html
-share/doc/qt2/html/images.html
-share/doc/qt2/html/index
-share/doc/qt2/html/index.html
-share/doc/qt2/html/install-qws.html
-share/doc/qt2/html/install-win.html
-share/doc/qt2/html/install-x11.html
-share/doc/qt2/html/installation.html
-share/doc/qt2/html/io.html
-share/doc/qt2/html/keyfeatures21.html
-share/doc/qt2/html/keyfeatures22.html
-share/doc/qt2/html/layout-layout-cpp.html
-share/doc/qt2/html/layout.html
-share/doc/qt2/html/letter.png
-share/doc/qt2/html/license.html
-share/doc/qt2/html/licenses.html
-share/doc/qt2/html/life-main-cpp.html
-share/doc/qt2/html/lineedits-main-cpp.html
-share/doc/qt2/html/listbox-main-cpp.html
-share/doc/qt2/html/listboxcombo-main-cpp.html
-share/doc/qt2/html/listviews-main-cpp.html
-share/doc/qt2/html/mailinglists.html
-share/doc/qt2/html/mainlyMotif-editor-cpp.html
-share/doc/qt2/html/mainlyQt-editor-cpp.html
-share/doc/qt2/html/mainlyXt-editor-cpp.html
-share/doc/qt2/html/mainwindow-m.png
-share/doc/qt2/html/mainwindow-w.png
-share/doc/qt2/html/mdi-main-cpp.html
-share/doc/qt2/html/menu-menu-cpp.html
-share/doc/qt2/html/metaobjects.html
-share/doc/qt2/html/misc.html
-share/doc/qt2/html/moc.html
-share/doc/qt2/html/modules.html
-share/doc/qt2/html/movies-main-cpp.html
-share/doc/qt2/html/network.html
-share/doc/qt2/html/nsplugin.html
-share/doc/qt2/html/object.html
-share/doc/qt2/html/objectmodel.html
-share/doc/qt2/html/objecttrees.html
-share/doc/qt2/html/opengl.html
-share/doc/qt2/html/organizers.html
-share/doc/qt2/html/palette.png
-share/doc/qt2/html/picture-picture-cpp.html
-share/doc/qt2/html/pictures.html
-share/doc/qt2/html/pnglogo.png
-share/doc/qt2/html/pointer-qws.html
-share/doc/qt2/html/popup-popup-cpp.html
-share/doc/qt2/html/porting-qws.html
-share/doc/qt2/html/porting.html
-share/doc/qt2/html/primes.html
-share/doc/qt2/html/progress-progress-cpp.html
-share/doc/qt2/html/progressbar-main-cpp.html
-share/doc/qt2/html/properties.html
-share/doc/qt2/html/propertyindex
-share/doc/qt2/html/qabstractlayout-h.html
-share/doc/qt2/html/qaccel-h.html
-share/doc/qt2/html/qaccel-members.html
-share/doc/qt2/html/qaccel.html
-share/doc/qt2/html/qaction-h.html
-share/doc/qt2/html/qaction-members.html
-share/doc/qt2/html/qaction.html
-share/doc/qt2/html/qactiongroup-members.html
-share/doc/qt2/html/qactiongroup.html
-share/doc/qt2/html/qapplication-h.html
-share/doc/qt2/html/qapplication-members.html
-share/doc/qt2/html/qapplication.html
-share/doc/qt2/html/qarray-h.html
-share/doc/qt2/html/qarray-members.html
-share/doc/qt2/html/qarray.html
-share/doc/qt2/html/qasciicache-h.html
-share/doc/qt2/html/qasciicache-members.html
-share/doc/qt2/html/qasciicache.html
-share/doc/qt2/html/qasciicacheiterator-members.html
-share/doc/qt2/html/qasciicacheiterator.html
-share/doc/qt2/html/qasciidict-h.html
-share/doc/qt2/html/qasciidict-members.html
-share/doc/qt2/html/qasciidict.html
-share/doc/qt2/html/qasciidictiterator-members.html
-share/doc/qt2/html/qasciidictiterator.html
-share/doc/qt2/html/qasyncimageio-h.html
-share/doc/qt2/html/qasyncio-h.html
-share/doc/qt2/html/qasyncio-members.html
-share/doc/qt2/html/qasyncio.html
-share/doc/qt2/html/qbitarray-h.html
-share/doc/qt2/html/qbitarray-members.html
-share/doc/qt2/html/qbitarray.html
-share/doc/qt2/html/qbitmap-h.html
-share/doc/qt2/html/qbitmap-members.html
-share/doc/qt2/html/qbitmap.html
-share/doc/qt2/html/qbitval-members.html
-share/doc/qt2/html/qbitval.html
-share/doc/qt2/html/qboxlayout-members.html
-share/doc/qt2/html/qboxlayout.html
-share/doc/qt2/html/qbrush-h.html
-share/doc/qt2/html/qbrush-members.html
-share/doc/qt2/html/qbrush.html
-share/doc/qt2/html/qbttngrp-m.png
-share/doc/qt2/html/qbttngrp-w.png
-share/doc/qt2/html/qbuffer-h.html
-share/doc/qt2/html/qbuffer-members.html
-share/doc/qt2/html/qbuffer.html
-share/doc/qt2/html/qbutton-h.html
-share/doc/qt2/html/qbutton-members.html
-share/doc/qt2/html/qbutton.html
-share/doc/qt2/html/qbuttongroup-h.html
-share/doc/qt2/html/qbuttongroup-members.html
-share/doc/qt2/html/qbuttongroup.html
-share/doc/qt2/html/qbytearray-members.html
-share/doc/qt2/html/qbytearray.html
-share/doc/qt2/html/qcache-h.html
-share/doc/qt2/html/qcache-members.html
-share/doc/qt2/html/qcache.html
-share/doc/qt2/html/qcacheiterator-members.html
-share/doc/qt2/html/qcacheiterator.html
-share/doc/qt2/html/qcanvas-h.html
-share/doc/qt2/html/qcanvas-members.html
-share/doc/qt2/html/qcanvas.html
-share/doc/qt2/html/qcanvas.png
-share/doc/qt2/html/qcanvasellipse-members.html
-share/doc/qt2/html/qcanvasellipse.html
-share/doc/qt2/html/qcanvasitem-members.html
-share/doc/qt2/html/qcanvasitem.html
-share/doc/qt2/html/qcanvasline-members.html
-share/doc/qt2/html/qcanvasline.html
-share/doc/qt2/html/qcanvaspixmap-members.html
-share/doc/qt2/html/qcanvaspixmap.html
-share/doc/qt2/html/qcanvaspixmaparray-members.html
-share/doc/qt2/html/qcanvaspixmaparray.html
-share/doc/qt2/html/qcanvaspolygon-members.html
-share/doc/qt2/html/qcanvaspolygon.html
-share/doc/qt2/html/qcanvaspolygonalitem-members.html
-share/doc/qt2/html/qcanvaspolygonalitem.html
-share/doc/qt2/html/qcanvasrectangle-members.html
-share/doc/qt2/html/qcanvasrectangle.html
-share/doc/qt2/html/qcanvassprite-members.html
-share/doc/qt2/html/qcanvassprite.html
-share/doc/qt2/html/qcanvastext-members.html
-share/doc/qt2/html/qcanvastext.html
-share/doc/qt2/html/qcanvasview-members.html
-share/doc/qt2/html/qcanvasview.html
-share/doc/qt2/html/qcdestyle-h.html
-share/doc/qt2/html/qcdestyle-members.html
-share/doc/qt2/html/qcdestyle.html
-share/doc/qt2/html/qchar-members.html
-share/doc/qt2/html/qchar.html
-share/doc/qt2/html/qcharref-members.html
-share/doc/qt2/html/qcharref.html
-share/doc/qt2/html/qcheckbox-h.html
-share/doc/qt2/html/qcheckbox-m.png
-share/doc/qt2/html/qcheckbox-members.html
-share/doc/qt2/html/qcheckbox-w.png
-share/doc/qt2/html/qcheckbox.html
-share/doc/qt2/html/qchecklistitem-members.html
-share/doc/qt2/html/qchecklistitem.html
-share/doc/qt2/html/qchildevent-members.html
-share/doc/qt2/html/qchildevent.html
-share/doc/qt2/html/qchkbox-m.png
-share/doc/qt2/html/qchkbox-w.png
-share/doc/qt2/html/qclassinfo-members.html
-share/doc/qt2/html/qclipboard-h.html
-share/doc/qt2/html/qclipboard-members.html
-share/doc/qt2/html/qclipboard.html
-share/doc/qt2/html/qcloseevent-members.html
-share/doc/qt2/html/qcloseevent.html
-share/doc/qt2/html/qcollection-h.html
-share/doc/qt2/html/qcollection-members.html
-share/doc/qt2/html/qcollection.html
-share/doc/qt2/html/qcolor-h.html
-share/doc/qt2/html/qcolor-members.html
-share/doc/qt2/html/qcolor.html
-share/doc/qt2/html/qcolordialog-h.html
-share/doc/qt2/html/qcolordialog-members.html
-share/doc/qt2/html/qcolordialog.html
-share/doc/qt2/html/qcolordlg-m.png
-share/doc/qt2/html/qcolordlg-w.png
-share/doc/qt2/html/qcolordrag-members.html
-share/doc/qt2/html/qcolordrag.html
-share/doc/qt2/html/qcolorgroup-members.html
-share/doc/qt2/html/qcolorgroup.html
-share/doc/qt2/html/qcombo1-m.png
-share/doc/qt2/html/qcombo1-w.png
-share/doc/qt2/html/qcombo2-m.png
-share/doc/qt2/html/qcombo2-w.png
-share/doc/qt2/html/qcombo3-m.png
-share/doc/qt2/html/qcombo3-w.png
-share/doc/qt2/html/qcombobox-h.html
-share/doc/qt2/html/qcombobox-members.html
-share/doc/qt2/html/qcombobox.html
-share/doc/qt2/html/qcommonstyle-h.html
-share/doc/qt2/html/qcommonstyle-members.html
-share/doc/qt2/html/qcommonstyle.html
-share/doc/qt2/html/qconnection-h.html
-share/doc/qt2/html/qconnection-members.html
-share/doc/qt2/html/qconnection.html
-share/doc/qt2/html/qconststring-members.html
-share/doc/qt2/html/qconststring.html
-share/doc/qt2/html/qcopchannel-members.html
-share/doc/qt2/html/qcopchannel.html
-share/doc/qt2/html/qcopchannel_qws-h.html
-share/doc/qt2/html/qcstring-h.html
-share/doc/qt2/html/qcstring-members.html
-share/doc/qt2/html/qcstring.html
-share/doc/qt2/html/qcursor-h.html
-share/doc/qt2/html/qcursor-members.html
-share/doc/qt2/html/qcursor.html
-share/doc/qt2/html/qcustomevent-members.html
-share/doc/qt2/html/qcustomevent.html
-share/doc/qt2/html/qcustommenuitem-members.html
-share/doc/qt2/html/qcustommenuitem.html
-share/doc/qt2/html/qdatapump-members.html
-share/doc/qt2/html/qdatapump.html
-share/doc/qt2/html/qdatasink-members.html
-share/doc/qt2/html/qdatasink.html
-share/doc/qt2/html/qdatasource-members.html
-share/doc/qt2/html/qdatasource.html
-share/doc/qt2/html/qdatastream-h.html
-share/doc/qt2/html/qdatastream-members.html
-share/doc/qt2/html/qdatastream.html
-share/doc/qt2/html/qdate-members.html
-share/doc/qt2/html/qdate.html
-share/doc/qt2/html/qdatetime-h.html
-share/doc/qt2/html/qdatetime-members.html
-share/doc/qt2/html/qdatetime.html
-share/doc/qt2/html/qdial-h.html
-share/doc/qt2/html/qdial-m.png
-share/doc/qt2/html/qdial-members.html
-share/doc/qt2/html/qdial-w.png
-share/doc/qt2/html/qdial.html
-share/doc/qt2/html/qdialog-h.html
-share/doc/qt2/html/qdialog-members.html
-share/doc/qt2/html/qdialog.html
-share/doc/qt2/html/qdict-h.html
-share/doc/qt2/html/qdict-members.html
-share/doc/qt2/html/qdict.html
-share/doc/qt2/html/qdictiterator-members.html
-share/doc/qt2/html/qdictiterator.html
-share/doc/qt2/html/qdir-h.html
-share/doc/qt2/html/qdir-members.html
-share/doc/qt2/html/qdir.html
-share/doc/qt2/html/qdns-h.html
-share/doc/qt2/html/qdns-members.html
-share/doc/qt2/html/qdns.html
-share/doc/qt2/html/qdom-h.html
-share/doc/qt2/html/qdomattr-members.html
-share/doc/qt2/html/qdomattr.html
-share/doc/qt2/html/qdomcdatasection-members.html
-share/doc/qt2/html/qdomcdatasection.html
-share/doc/qt2/html/qdomcharacterdata-members.html
-share/doc/qt2/html/qdomcharacterdata.html
-share/doc/qt2/html/qdomcomment-members.html
-share/doc/qt2/html/qdomcomment.html
-share/doc/qt2/html/qdomdocument-members.html
-share/doc/qt2/html/qdomdocument.html
-share/doc/qt2/html/qdomdocumentfragment-members.html
-share/doc/qt2/html/qdomdocumentfragment.html
-share/doc/qt2/html/qdomdocumenttype-members.html
-share/doc/qt2/html/qdomdocumenttype.html
-share/doc/qt2/html/qdomelement-members.html
-share/doc/qt2/html/qdomelement.html
-share/doc/qt2/html/qdomentity-members.html
-share/doc/qt2/html/qdomentity.html
-share/doc/qt2/html/qdomentityreference-members.html
-share/doc/qt2/html/qdomentityreference.html
-share/doc/qt2/html/qdomimplementation-members.html
-share/doc/qt2/html/qdomimplementation.html
-share/doc/qt2/html/qdomnamednodemap-members.html
-share/doc/qt2/html/qdomnamednodemap.html
-share/doc/qt2/html/qdomnode-members.html
-share/doc/qt2/html/qdomnode.html
-share/doc/qt2/html/qdomnodelist-members.html
-share/doc/qt2/html/qdomnodelist.html
-share/doc/qt2/html/qdomnotation-members.html
-share/doc/qt2/html/qdomnotation.html
-share/doc/qt2/html/qdomprocessinginstruction-members.html
-share/doc/qt2/html/qdomprocessinginstruction.html
-share/doc/qt2/html/qdomtext-members.html
-share/doc/qt2/html/qdomtext.html
-share/doc/qt2/html/qdoublevalidator-members.html
-share/doc/qt2/html/qdoublevalidator.html
-share/doc/qt2/html/qdragenterevent-members.html
-share/doc/qt2/html/qdragenterevent.html
-share/doc/qt2/html/qdragleaveevent-members.html
-share/doc/qt2/html/qdragleaveevent.html
-share/doc/qt2/html/qdragmoveevent-members.html
-share/doc/qt2/html/qdragmoveevent.html
-share/doc/qt2/html/qdragobject-h.html
-share/doc/qt2/html/qdragobject-members.html
-share/doc/qt2/html/qdragobject.html
-share/doc/qt2/html/qdrawutil-h.html
-share/doc/qt2/html/qdropevent-members.html
-share/doc/qt2/html/qdropevent.html
-share/doc/qt2/html/qdropsite-h.html
-share/doc/qt2/html/qdropsite-members.html
-share/doc/qt2/html/qdropsite.html
-share/doc/qt2/html/qembed.html
-share/doc/qt2/html/qeucjpcodec-h.html
-share/doc/qt2/html/qeucjpcodec-members.html
-share/doc/qt2/html/qeucjpcodec.html
-share/doc/qt2/html/qeuckrcodec-h.html
-share/doc/qt2/html/qeuckrcodec-members.html
-share/doc/qt2/html/qeuckrcodec.html
-share/doc/qt2/html/qevent-h.html
-share/doc/qt2/html/qevent-members.html
-share/doc/qt2/html/qevent.html
-share/doc/qt2/html/qfd-qfd-cpp.html
-share/doc/qt2/html/qfile-h.html
-share/doc/qt2/html/qfile-members.html
-share/doc/qt2/html/qfile.html
-share/doc/qt2/html/qfiledialog-h.html
-share/doc/qt2/html/qfiledialog-members.html
-share/doc/qt2/html/qfiledialog.html
-share/doc/qt2/html/qfiledlg-m.png
-share/doc/qt2/html/qfiledlg-w.png
-share/doc/qt2/html/qfileiconprovider-members.html
-share/doc/qt2/html/qfileiconprovider.html
-share/doc/qt2/html/qfileinfo-h.html
-share/doc/qt2/html/qfileinfo-members.html
-share/doc/qt2/html/qfileinfo.html
-share/doc/qt2/html/qfilepreview-members.html
-share/doc/qt2/html/qfilepreview.html
-share/doc/qt2/html/qfocusdata-h.html
-share/doc/qt2/html/qfocusdata-members.html
-share/doc/qt2/html/qfocusdata.html
-share/doc/qt2/html/qfocusevent-members.html
-share/doc/qt2/html/qfocusevent.html
-share/doc/qt2/html/qfont-h.html
-share/doc/qt2/html/qfont-members.html
-share/doc/qt2/html/qfont.html
-share/doc/qt2/html/qfontdatabase-h.html
-share/doc/qt2/html/qfontdatabase-members.html
-share/doc/qt2/html/qfontdatabase.html
-share/doc/qt2/html/qfontdialog-h.html
-share/doc/qt2/html/qfontdialog-members.html
-share/doc/qt2/html/qfontdialog.html
-share/doc/qt2/html/qfontdlg-m.png
-share/doc/qt2/html/qfontdlg-w.png
-share/doc/qt2/html/qfontinfo-h.html
-share/doc/qt2/html/qfontinfo-members.html
-share/doc/qt2/html/qfontinfo.html
-share/doc/qt2/html/qfontmanager-members.html
-share/doc/qt2/html/qfontmanager_qws-h.html
-share/doc/qt2/html/qfontmetrics-h.html
-share/doc/qt2/html/qfontmetrics-members.html
-share/doc/qt2/html/qfontmetrics.html
-share/doc/qt2/html/qframe-h.html
-share/doc/qt2/html/qframe-members.html
-share/doc/qt2/html/qframe.html
-share/doc/qt2/html/qftp-h.html
-share/doc/qt2/html/qftp-members.html
-share/doc/qt2/html/qftp.html
-share/doc/qt2/html/qgarray-h.html
-share/doc/qt2/html/qgarray-members.html
-share/doc/qt2/html/qgarray.html
-share/doc/qt2/html/qgbkcodec-h.html
-share/doc/qt2/html/qgbkcodec-members.html
-share/doc/qt2/html/qgbkcodec.html
-share/doc/qt2/html/qgcache-h.html
-share/doc/qt2/html/qgcache-members.html
-share/doc/qt2/html/qgcache.html
-share/doc/qt2/html/qgcacheiterator-members.html
-share/doc/qt2/html/qgcacheiterator.html
-share/doc/qt2/html/qgdict-h.html
-share/doc/qt2/html/qgdict-members.html
-share/doc/qt2/html/qgdict.html
-share/doc/qt2/html/qgdictiterator-members.html
-share/doc/qt2/html/qgdictiterator.html
-share/doc/qt2/html/qgfx_qws-h.html
-share/doc/qt2/html/qgfxraster_qws-h.html
-share/doc/qt2/html/qgfxrasterbase-members.html
-share/doc/qt2/html/qgl-h.html
-share/doc/qt2/html/qgl-members.html
-share/doc/qt2/html/qgl.html
-share/doc/qt2/html/qglayoutiterator-members.html
-share/doc/qt2/html/qglayoutiterator.html
-share/doc/qt2/html/qglcontext-members.html
-share/doc/qt2/html/qglcontext.html
-share/doc/qt2/html/qglformat-members.html
-share/doc/qt2/html/qglformat.html
-share/doc/qt2/html/qglist-h.html
-share/doc/qt2/html/qglist-members.html
-share/doc/qt2/html/qglist.html
-share/doc/qt2/html/qglistiterator-members.html
-share/doc/qt2/html/qglistiterator.html
-share/doc/qt2/html/qglobal-h.html
-share/doc/qt2/html/qglwidget-members.html
-share/doc/qt2/html/qglwidget.html
-share/doc/qt2/html/qgrid-h.html
-share/doc/qt2/html/qgrid-m.png
-share/doc/qt2/html/qgrid-members.html
-share/doc/qt2/html/qgrid-w.png
-share/doc/qt2/html/qgrid.html
-share/doc/qt2/html/qgrid.png
-share/doc/qt2/html/qgridlayout-members.html
-share/doc/qt2/html/qgridlayout.html
-share/doc/qt2/html/qgroupbox-h.html
-share/doc/qt2/html/qgroupbox-members.html
-share/doc/qt2/html/qgroupbox.html
-share/doc/qt2/html/qgrpbox-m.png
-share/doc/qt2/html/qgrpbox-w.png
-share/doc/qt2/html/qguardedptr-h.html
-share/doc/qt2/html/qguardedptr-members.html
-share/doc/qt2/html/qguardedptr.html
-share/doc/qt2/html/qgvector-h.html
-share/doc/qt2/html/qgvector-members.html
-share/doc/qt2/html/qgvector.html
-share/doc/qt2/html/qhbox-h.html
-share/doc/qt2/html/qhbox-m.png
-share/doc/qt2/html/qhbox-members.html
-share/doc/qt2/html/qhbox-w.png
-share/doc/qt2/html/qhbox.html
-share/doc/qt2/html/qhbox.png
-share/doc/qt2/html/qhboxlayout-members.html
-share/doc/qt2/html/qhboxlayout.html
-share/doc/qt2/html/qhbuttongroup-h.html
-share/doc/qt2/html/qhbuttongroup-members.html
-share/doc/qt2/html/qhbuttongroup.html
-share/doc/qt2/html/qheader-h.html
-share/doc/qt2/html/qheader-m.png
-share/doc/qt2/html/qheader-members.html
-share/doc/qt2/html/qheader-w.png
-share/doc/qt2/html/qheader.html
-share/doc/qt2/html/qhgroupbox-h.html
-share/doc/qt2/html/qhgroupbox-members.html
-share/doc/qt2/html/qhgroupbox.html
-share/doc/qt2/html/qhideevent-members.html
-share/doc/qt2/html/qhideevent.html
-share/doc/qt2/html/qhostaddress-h.html
-share/doc/qt2/html/qhostaddress-members.html
-share/doc/qt2/html/qhostaddress.html
-share/doc/qt2/html/qicondrag-members.html
-share/doc/qt2/html/qicondrag.html
-share/doc/qt2/html/qicondragitem-members.html
-share/doc/qt2/html/qicondragitem.html
-share/doc/qt2/html/qiconset-h.html
-share/doc/qt2/html/qiconset-members.html
-share/doc/qt2/html/qiconset.html
-share/doc/qt2/html/qiconview-h.html
-share/doc/qt2/html/qiconview-m.png
-share/doc/qt2/html/qiconview-members.html
-share/doc/qt2/html/qiconview-w.png
-share/doc/qt2/html/qiconview.html
-share/doc/qt2/html/qiconviewitem-members.html
-share/doc/qt2/html/qiconviewitem.html
-share/doc/qt2/html/qimage-h.html
-share/doc/qt2/html/qimage-members.html
-share/doc/qt2/html/qimage.html
-share/doc/qt2/html/qimageconsumer-members.html
-share/doc/qt2/html/qimageconsumer.html
-share/doc/qt2/html/qimagedecoder-members.html
-share/doc/qt2/html/qimagedecoder.html
-share/doc/qt2/html/qimagedrag-members.html
-share/doc/qt2/html/qimagedrag.html
-share/doc/qt2/html/qimageformat-members.html
-share/doc/qt2/html/qimageformat.html
-share/doc/qt2/html/qimageformattype-members.html
-share/doc/qt2/html/qimageformattype.html
-share/doc/qt2/html/qimageio-members.html
-share/doc/qt2/html/qimageio.html
-share/doc/qt2/html/qinputdialog-h.html
-share/doc/qt2/html/qinputdialog-members.html
-share/doc/qt2/html/qinputdialog.html
-share/doc/qt2/html/qintcache-h.html
-share/doc/qt2/html/qintcache-members.html
-share/doc/qt2/html/qintcache.html
-share/doc/qt2/html/qintcacheiterator-members.html
-share/doc/qt2/html/qintcacheiterator.html
-share/doc/qt2/html/qintdict-h.html
-share/doc/qt2/html/qintdict-members.html
-share/doc/qt2/html/qintdict.html
-share/doc/qt2/html/qintdictiterator-members.html
-share/doc/qt2/html/qintdictiterator.html
-share/doc/qt2/html/qinterlacestyle-h.html
-share/doc/qt2/html/qinterlacestyle-members.html
-share/doc/qt2/html/qinterlacestyle.html
-share/doc/qt2/html/qintvalidator-members.html
-share/doc/qt2/html/qintvalidator.html
-share/doc/qt2/html/qiodevice-h.html
-share/doc/qt2/html/qiodevice-members.html
-share/doc/qt2/html/qiodevice.html
-share/doc/qt2/html/qiodevicesource-members.html
-share/doc/qt2/html/qiodevicesource.html
-share/doc/qt2/html/qjiscodec-h.html
-share/doc/qt2/html/qjiscodec-members.html
-share/doc/qt2/html/qjiscodec.html
-share/doc/qt2/html/qjpunicode-h.html
-share/doc/qt2/html/qjpunicodeconv-members.html
-share/doc/qt2/html/qjpunicodeconv.html
-share/doc/qt2/html/qkeyboard_qws-h.html
-share/doc/qt2/html/qkeyevent-members.html
-share/doc/qt2/html/qkeyevent.html
-share/doc/qt2/html/qlabel-h.html
-share/doc/qt2/html/qlabel-m.png
-share/doc/qt2/html/qlabel-members.html
-share/doc/qt2/html/qlabel-w.png
-share/doc/qt2/html/qlabel.html
-share/doc/qt2/html/qlayout-h.html
-share/doc/qt2/html/qlayout-members.html
-share/doc/qt2/html/qlayout.html
-share/doc/qt2/html/qlayoutitem-members.html
-share/doc/qt2/html/qlayoutitem.html
-share/doc/qt2/html/qlayoutiterator-members.html
-share/doc/qt2/html/qlayoutiterator.html
-share/doc/qt2/html/qlcdnum-m.png
-share/doc/qt2/html/qlcdnum-w.png
-share/doc/qt2/html/qlcdnumber-h.html
-share/doc/qt2/html/qlcdnumber-members.html
-share/doc/qt2/html/qlcdnumber.html
-share/doc/qt2/html/qlined-m.png
-share/doc/qt2/html/qlined-w.png
-share/doc/qt2/html/qlineedit-h.html
-share/doc/qt2/html/qlineedit-members.html
-share/doc/qt2/html/qlineedit.html
-share/doc/qt2/html/qlist-h.html
-share/doc/qt2/html/qlist-members.html
-share/doc/qt2/html/qlist.html
-share/doc/qt2/html/qlistbox-h.html
-share/doc/qt2/html/qlistbox-m.png
-share/doc/qt2/html/qlistbox-members.html
-share/doc/qt2/html/qlistbox-w.png
-share/doc/qt2/html/qlistbox.html
-share/doc/qt2/html/qlistboxitem-members.html
-share/doc/qt2/html/qlistboxitem.html
-share/doc/qt2/html/qlistboxpixmap-members.html
-share/doc/qt2/html/qlistboxpixmap.html
-share/doc/qt2/html/qlistboxtext-members.html
-share/doc/qt2/html/qlistboxtext.html
-share/doc/qt2/html/qlistiterator-members.html
-share/doc/qt2/html/qlistiterator.html
-share/doc/qt2/html/qlistview-h.html
-share/doc/qt2/html/qlistview-m.png
-share/doc/qt2/html/qlistview-members.html
-share/doc/qt2/html/qlistview-w.png
-share/doc/qt2/html/qlistview.html
-share/doc/qt2/html/qlistviewitem-members.html
-share/doc/qt2/html/qlistviewitem.html
-share/doc/qt2/html/qlistviewitemiterator-members.html
-share/doc/qt2/html/qlistviewitemiterator.html
-share/doc/qt2/html/qlnode-members.html
-share/doc/qt2/html/qlnode.html
-share/doc/qt2/html/qlocalfs-h.html
-share/doc/qt2/html/qlocalfs-members.html
-share/doc/qt2/html/qlocalfs.html
-share/doc/qt2/html/qlock-members.html
-share/doc/qt2/html/qlock_qws-h.html
-share/doc/qt2/html/qmag-qmag-cpp.html
-share/doc/qt2/html/qmainwindow-h.html
-share/doc/qt2/html/qmainwindow-m.png
-share/doc/qt2/html/qmainwindow-members.html
-share/doc/qt2/html/qmainwindow-w.png
-share/doc/qt2/html/qmainwindow.html
-share/doc/qt2/html/qmap-h.html
-share/doc/qt2/html/qmap-members.html
-share/doc/qt2/html/qmap.html
-share/doc/qt2/html/qmapconstiterator-members.html
-share/doc/qt2/html/qmapconstiterator.html
-share/doc/qt2/html/qmapiterator-members.html
-share/doc/qt2/html/qmapiterator.html
-share/doc/qt2/html/qmenubar-h.html
-share/doc/qt2/html/qmenubar-m.png
-share/doc/qt2/html/qmenubar-members.html
-share/doc/qt2/html/qmenubar-w.png
-share/doc/qt2/html/qmenubar.html
-share/doc/qt2/html/qmenudata-h.html
-share/doc/qt2/html/qmenudata-members.html
-share/doc/qt2/html/qmenudata.html
-share/doc/qt2/html/qmessagebox-h.html
-share/doc/qt2/html/qmessagebox-members.html
-share/doc/qt2/html/qmessagebox.html
-share/doc/qt2/html/qmetadata-members.html
-share/doc/qt2/html/qmetaobject-h.html
-share/doc/qt2/html/qmetaobject-members.html
-share/doc/qt2/html/qmetaobject.html
-share/doc/qt2/html/qmetaproperty-members.html
-share/doc/qt2/html/qmetaproperty.html
-share/doc/qt2/html/qmime-h.html
-share/doc/qt2/html/qmimesource-members.html
-share/doc/qt2/html/qmimesource.html
-share/doc/qt2/html/qmimesourcefactory-members.html
-share/doc/qt2/html/qmimesourcefactory.html
-share/doc/qt2/html/qmlined-m.png
-share/doc/qt2/html/qmlined-w.png
-share/doc/qt2/html/qmngio-h.html
-share/doc/qt2/html/qmotifplusstyle-h.html
-share/doc/qt2/html/qmotifplusstyle-members.html
-share/doc/qt2/html/qmotifplusstyle.html
-share/doc/qt2/html/qmotifstyle-h.html
-share/doc/qt2/html/qmotifstyle-members.html
-share/doc/qt2/html/qmotifstyle.html
-share/doc/qt2/html/qmouseevent-members.html
-share/doc/qt2/html/qmouseevent.html
-share/doc/qt2/html/qmoveevent-members.html
-share/doc/qt2/html/qmoveevent.html
-share/doc/qt2/html/qmovie-h.html
-share/doc/qt2/html/qmovie-members.html
-share/doc/qt2/html/qmovie.html
-share/doc/qt2/html/qmovie.png
-share/doc/qt2/html/qmsgbox-m.png
-share/doc/qt2/html/qmsgbox-w.png
-share/doc/qt2/html/qmultilineedit-h.html
-share/doc/qt2/html/qmultilineedit-members.html
-share/doc/qt2/html/qmultilineedit.html
-share/doc/qt2/html/qmutex-members.html
-share/doc/qt2/html/qmutex.html
-share/doc/qt2/html/qnamespace-h.html
-share/doc/qt2/html/qnetworkegg.html
-share/doc/qt2/html/qnetworkoperation-members.html
-share/doc/qt2/html/qnetworkoperation.html
-share/doc/qt2/html/qnetworkprotocol-h.html
-share/doc/qt2/html/qnetworkprotocol-members.html
-share/doc/qt2/html/qnetworkprotocol.html
-share/doc/qt2/html/qnp-h.html
-share/doc/qt2/html/qnpinstance-members.html
-share/doc/qt2/html/qnpinstance.html
-share/doc/qt2/html/qnplugin-members.html
-share/doc/qt2/html/qnplugin.html
-share/doc/qt2/html/qnpstream-members.html
-share/doc/qt2/html/qnpstream.html
-share/doc/qt2/html/qnpwidget-members.html
-share/doc/qt2/html/qnpwidget.html
-share/doc/qt2/html/qobject-h.html
-share/doc/qt2/html/qobject-members.html
-share/doc/qt2/html/qobject.html
-share/doc/qt2/html/qpaintdevice-h.html
-share/doc/qt2/html/qpaintdevice-members.html
-share/doc/qt2/html/qpaintdevice.html
-share/doc/qt2/html/qpaintdevicemetrics-h.html
-share/doc/qt2/html/qpaintdevicemetrics-members.html
-share/doc/qt2/html/qpaintdevicemetrics.html
-share/doc/qt2/html/qpainter-h.html
-share/doc/qt2/html/qpainter-members.html
-share/doc/qt2/html/qpainter.html
-share/doc/qt2/html/qpaintevent-members.html
-share/doc/qt2/html/qpaintevent.html
-share/doc/qt2/html/qpalette-h.html
-share/doc/qt2/html/qpalette-members.html
-share/doc/qt2/html/qpalette.html
-share/doc/qt2/html/qpen-h.html
-share/doc/qt2/html/qpen-members.html
-share/doc/qt2/html/qpen.html
-share/doc/qt2/html/qpicture-h.html
-share/doc/qt2/html/qpicture-members.html
-share/doc/qt2/html/qpicture.html
-share/doc/qt2/html/qpixmap-h.html
-share/doc/qt2/html/qpixmap-members.html
-share/doc/qt2/html/qpixmap.html
-share/doc/qt2/html/qpixmapcache-h.html
-share/doc/qt2/html/qpixmapcache-members.html
-share/doc/qt2/html/qpixmapcache.html
-share/doc/qt2/html/qplatinumstyle-h.html
-share/doc/qt2/html/qplatinumstyle-members.html
-share/doc/qt2/html/qplatinumstyle.html
-share/doc/qt2/html/qpngimagepacker-members.html
-share/doc/qt2/html/qpngimagepacker.html
-share/doc/qt2/html/qpngio-h.html
-share/doc/qt2/html/qpoint-h.html
-share/doc/qt2/html/qpoint-members.html
-share/doc/qt2/html/qpoint.html
-share/doc/qt2/html/qpointarray-h.html
-share/doc/qt2/html/qpointarray-members.html
-share/doc/qt2/html/qpointarray.html
-share/doc/qt2/html/qpopmenu-fancy.png
-share/doc/qt2/html/qpopmenu-m.png
-share/doc/qt2/html/qpopmenu-w.png
-share/doc/qt2/html/qpopupmenu-h.html
-share/doc/qt2/html/qpopupmenu-members.html
-share/doc/qt2/html/qpopupmenu.html
-share/doc/qt2/html/qprintdialog-h.html
-share/doc/qt2/html/qprintdialog-members.html
-share/doc/qt2/html/qprintdlg-m.png
-share/doc/qt2/html/qprintdlg-w.png
-share/doc/qt2/html/qprinter-h.html
-share/doc/qt2/html/qprinter-members.html
-share/doc/qt2/html/qprinter.html
-share/doc/qt2/html/qprogbar-m.png
-share/doc/qt2/html/qprogbar-w.png
-share/doc/qt2/html/qprogdlg-m.png
-share/doc/qt2/html/qprogdlg-w.png
-share/doc/qt2/html/qprogressbar-h.html
-share/doc/qt2/html/qprogressbar-members.html
-share/doc/qt2/html/qprogressbar.html
-share/doc/qt2/html/qprogressdialog-h.html
-share/doc/qt2/html/qprogressdialog-members.html
-share/doc/qt2/html/qprogressdialog.html
-share/doc/qt2/html/qptrdict-h.html
-share/doc/qt2/html/qptrdict-members.html
-share/doc/qt2/html/qptrdict.html
-share/doc/qt2/html/qptrdictiterator-members.html
-share/doc/qt2/html/qptrdictiterator.html
-share/doc/qt2/html/qpushbt-m.png
-share/doc/qt2/html/qpushbt-w.png
-share/doc/qt2/html/qpushbutton-h.html
-share/doc/qt2/html/qpushbutton-members.html
-share/doc/qt2/html/qpushbutton.html
-share/doc/qt2/html/qqueue-h.html
-share/doc/qt2/html/qqueue-members.html
-share/doc/qt2/html/qqueue.html
-share/doc/qt2/html/qradiobt-m.png
-share/doc/qt2/html/qradiobt-w.png
-share/doc/qt2/html/qradiobutton-h.html
-share/doc/qt2/html/qradiobutton-members.html
-share/doc/qt2/html/qradiobutton.html
-share/doc/qt2/html/qrangecontrol-h.html
-share/doc/qt2/html/qrangecontrol-members.html
-share/doc/qt2/html/qrangecontrol.html
-share/doc/qt2/html/qrect-h.html
-share/doc/qt2/html/qrect-members.html
-share/doc/qt2/html/qrect.html
-share/doc/qt2/html/qregexp-h.html
-share/doc/qt2/html/qregexp-members.html
-share/doc/qt2/html/qregexp.html
-share/doc/qt2/html/qregion-h.html
-share/doc/qt2/html/qregion-members.html
-share/doc/qt2/html/qregion.html
-share/doc/qt2/html/qrenderedfont-members.html
-share/doc/qt2/html/qresizeevent-members.html
-share/doc/qt2/html/qresizeevent.html
-share/doc/qt2/html/qscrbar-m.png
-share/doc/qt2/html/qscrbar-w.png
-share/doc/qt2/html/qscreen-members.html
-share/doc/qt2/html/qscreencursor-members.html
-share/doc/qt2/html/qscreencursor.html
-share/doc/qt2/html/qscrollbar-h.html
-share/doc/qt2/html/qscrollbar-members.html
-share/doc/qt2/html/qscrollbar.html
-share/doc/qt2/html/qscrollview-cl.png
-share/doc/qt2/html/qscrollview-h.html
-share/doc/qt2/html/qscrollview-m.png
-share/doc/qt2/html/qscrollview-members.html
-share/doc/qt2/html/qscrollview-vp.png
-share/doc/qt2/html/qscrollview-vp2.png
-share/doc/qt2/html/qscrollview-w.png
-share/doc/qt2/html/qscrollview.html
-share/doc/qt2/html/qsemaphore-members.html
-share/doc/qt2/html/qsemaphore.html
-share/doc/qt2/html/qsemimodal-h.html
-share/doc/qt2/html/qsemimodal-members.html
-share/doc/qt2/html/qsemimodal.html
-share/doc/qt2/html/qserversocket-h.html
-share/doc/qt2/html/qserversocket-members.html
-share/doc/qt2/html/qserversocket.html
-share/doc/qt2/html/qsessionmanager-h.html
-share/doc/qt2/html/qsessionmanager-members.html
-share/doc/qt2/html/qsessionmanager.html
-share/doc/qt2/html/qsgistyle-h.html
-share/doc/qt2/html/qsgistyle-members.html
-share/doc/qt2/html/qsgistyle.html
-share/doc/qt2/html/qshared-h.html
-share/doc/qt2/html/qshared-members.html
-share/doc/qt2/html/qshared.html
-share/doc/qt2/html/qshowevent-members.html
-share/doc/qt2/html/qshowevent.html
-share/doc/qt2/html/qsignal-h.html
-share/doc/qt2/html/qsignal-members.html
-share/doc/qt2/html/qsignal.html
-share/doc/qt2/html/qsignalmapper-h.html
-share/doc/qt2/html/qsignalmapper-members.html
-share/doc/qt2/html/qsignalmapper.html
-share/doc/qt2/html/qsimplerichtext-h.html
-share/doc/qt2/html/qsimplerichtext-members.html
-share/doc/qt2/html/qsimplerichtext.html
-share/doc/qt2/html/qsize-h.html
-share/doc/qt2/html/qsize-members.html
-share/doc/qt2/html/qsize.html
-share/doc/qt2/html/qsizegrip-h.html
-share/doc/qt2/html/qsizegrip-m.png
-share/doc/qt2/html/qsizegrip-members.html
-share/doc/qt2/html/qsizegrip-w.png
-share/doc/qt2/html/qsizegrip.html
-share/doc/qt2/html/qsizepolicy-h.html
-share/doc/qt2/html/qsizepolicy-members.html
-share/doc/qt2/html/qsizepolicy.html
-share/doc/qt2/html/qsjiscodec-h.html
-share/doc/qt2/html/qsjiscodec-members.html
-share/doc/qt2/html/qsjiscodec.html
-share/doc/qt2/html/qslider-h.html
-share/doc/qt2/html/qslider-m.png
-share/doc/qt2/html/qslider-members.html
-share/doc/qt2/html/qslider-w.png
-share/doc/qt2/html/qslider.html
-share/doc/qt2/html/qsocket-h.html
-share/doc/qt2/html/qsocket-members.html
-share/doc/qt2/html/qsocket.html
-share/doc/qt2/html/qsocketdevice-h.html
-share/doc/qt2/html/qsocketdevice-members.html
-share/doc/qt2/html/qsocketdevice.html
-share/doc/qt2/html/qsocketnotifier-h.html
-share/doc/qt2/html/qsocketnotifier-members.html
-share/doc/qt2/html/qsocketnotifier.html
-share/doc/qt2/html/qsortedlist-h.html
-share/doc/qt2/html/qsortedlist-members.html
-share/doc/qt2/html/qsortedlist.html
-share/doc/qt2/html/qsound-h.html
-share/doc/qt2/html/qsound-members.html
-share/doc/qt2/html/qsound.html
-share/doc/qt2/html/qspaceritem-members.html
-share/doc/qt2/html/qspaceritem.html
-share/doc/qt2/html/qspinbox-h.html
-share/doc/qt2/html/qspinbox-m.png
-share/doc/qt2/html/qspinbox-members.html
-share/doc/qt2/html/qspinbox-w.png
-share/doc/qt2/html/qspinbox.html
-share/doc/qt2/html/qspinbox2-m.png
-share/doc/qt2/html/qspinbox2-w.png
-share/doc/qt2/html/qsplitter-h.html
-share/doc/qt2/html/qsplitter-m.png
-share/doc/qt2/html/qsplitter-members.html
-share/doc/qt2/html/qsplitter-w.png
-share/doc/qt2/html/qsplitter.html
-share/doc/qt2/html/qstack-h.html
-share/doc/qt2/html/qstack-members.html
-share/doc/qt2/html/qstack.html
-share/doc/qt2/html/qstatusbar-h.html
-share/doc/qt2/html/qstatusbar-m.png
-share/doc/qt2/html/qstatusbar-members.html
-share/doc/qt2/html/qstatusbar-w.png
-share/doc/qt2/html/qstatusbar.html
-share/doc/qt2/html/qstoreddrag-members.html
-share/doc/qt2/html/qstoreddrag.html
-share/doc/qt2/html/qstrilist-members.html
-share/doc/qt2/html/qstrilist.html
-share/doc/qt2/html/qstring-h.html
-share/doc/qt2/html/qstring-members.html
-share/doc/qt2/html/qstring.html
-share/doc/qt2/html/qstringlist-h.html
-share/doc/qt2/html/qstringlist-members.html
-share/doc/qt2/html/qstringlist.html
-share/doc/qt2/html/qstrlist-h.html
-share/doc/qt2/html/qstrlist-members.html
-share/doc/qt2/html/qstrlist.html
-share/doc/qt2/html/qstrlistiterator-members.html
-share/doc/qt2/html/qstrlistiterator.html
-share/doc/qt2/html/qstyle-h.html
-share/doc/qt2/html/qstyle-members.html
-share/doc/qt2/html/qstyle.html
-share/doc/qt2/html/qstylesheet-h.html
-share/doc/qt2/html/qstylesheet-members.html
-share/doc/qt2/html/qstylesheet.html
-share/doc/qt2/html/qstylesheetitem-members.html
-share/doc/qt2/html/qstylesheetitem.html
-share/doc/qt2/html/qt-members.html
-share/doc/qt2/html/qt.html
-share/doc/qt2/html/qtab-members.html
-share/doc/qt2/html/qtab.html
-share/doc/qt2/html/qtabbar-h.html
-share/doc/qt2/html/qtabbar-m.png
-share/doc/qt2/html/qtabbar-members.html
-share/doc/qt2/html/qtabbar-w.png
-share/doc/qt2/html/qtabbar.html
-share/doc/qt2/html/qtabdialog-h.html
-share/doc/qt2/html/qtabdialog-members.html
-share/doc/qt2/html/qtabdialog.html
-share/doc/qt2/html/qtabdlg-m.png
-share/doc/qt2/html/qtabdlg-w.png
-share/doc/qt2/html/qtable-h.html
-share/doc/qt2/html/qtable-members.html
-share/doc/qt2/html/qtable.html
-share/doc/qt2/html/qtable.png
-share/doc/qt2/html/qtableitem-members.html
-share/doc/qt2/html/qtableitem.html
-share/doc/qt2/html/qtableselection-members.html
-share/doc/qt2/html/qtableselection.html
-share/doc/qt2/html/qtableview-h.html
-share/doc/qt2/html/qtableview-members.html
-share/doc/qt2/html/qtableview.html
-share/doc/qt2/html/qtablevw-m.png
-share/doc/qt2/html/qtablevw-w.png
-share/doc/qt2/html/qtabwidget-h.html
-share/doc/qt2/html/qtabwidget-m.png
-share/doc/qt2/html/qtabwidget-members.html
-share/doc/qt2/html/qtabwidget-w.png
-share/doc/qt2/html/qtabwidget.html
-share/doc/qt2/html/qtextbrowser-h.html
-share/doc/qt2/html/qtextbrowser-m.png
-share/doc/qt2/html/qtextbrowser-members.html
-share/doc/qt2/html/qtextbrowser-w.png
-share/doc/qt2/html/qtextbrowser.html
-share/doc/qt2/html/qtextcodec-h.html
-share/doc/qt2/html/qtextcodec-members.html
-share/doc/qt2/html/qtextcodec.html
-share/doc/qt2/html/qtextdecoder-members.html
-share/doc/qt2/html/qtextdecoder.html
-share/doc/qt2/html/qtextdrag-members.html
-share/doc/qt2/html/qtextdrag.html
-share/doc/qt2/html/qtextencoder-members.html
-share/doc/qt2/html/qtextencoder.html
-share/doc/qt2/html/qtextistream-members.html
-share/doc/qt2/html/qtextistream.html
-share/doc/qt2/html/qtextostream-members.html
-share/doc/qt2/html/qtextostream.html
-share/doc/qt2/html/qtextstream-h.html
-share/doc/qt2/html/qtextstream-members.html
-share/doc/qt2/html/qtextstream.html
-share/doc/qt2/html/qtextview-h.html
-share/doc/qt2/html/qtextview-members.html
-share/doc/qt2/html/qtextview.html
-share/doc/qt2/html/qthread-h.html
-share/doc/qt2/html/qthread-members.html
-share/doc/qt2/html/qthread.html
-share/doc/qt2/html/qtimage-qtimage-cpp.html
-share/doc/qt2/html/qtime-members.html
-share/doc/qt2/html/qtime.html
-share/doc/qt2/html/qtimer-h.html
-share/doc/qt2/html/qtimer-members.html
-share/doc/qt2/html/qtimer.html
-share/doc/qt2/html/qtimerevent-members.html
-share/doc/qt2/html/qtimerevent.html
-share/doc/qt2/html/qtl.html
-share/doc/qt2/html/qtlogo.png
-share/doc/qt2/html/qtoolbar-h.html
-share/doc/qt2/html/qtoolbar-members.html
-share/doc/qt2/html/qtoolbar.html
-share/doc/qt2/html/qtoolbutton-h.html
-share/doc/qt2/html/qtoolbutton-members.html
-share/doc/qt2/html/qtoolbutton.html
-share/doc/qt2/html/qtooltip-h.html
-share/doc/qt2/html/qtooltip-members.html
-share/doc/qt2/html/qtooltip.html
-share/doc/qt2/html/qtooltipgroup-members.html
-share/doc/qt2/html/qtooltipgroup.html
-share/doc/qt2/html/qtranslator-h.html
-share/doc/qt2/html/qtranslator-members.html
-share/doc/qt2/html/qtranslator.html
-share/doc/qt2/html/qtranslatormessage-members.html
-share/doc/qt2/html/qtranslatormessage.html
-share/doc/qt2/html/qtsciicodec-h.html
-share/doc/qt2/html/qtsciicodec-members.html
-share/doc/qt2/html/qtsciicodec.html
-share/doc/qt2/html/quridrag-members.html
-share/doc/qt2/html/quridrag.html
-share/doc/qt2/html/qurl-h.html
-share/doc/qt2/html/qurl-members.html
-share/doc/qt2/html/qurl.html
-share/doc/qt2/html/qurlinfo-h.html
-share/doc/qt2/html/qurlinfo-members.html
-share/doc/qt2/html/qurlinfo.html
-share/doc/qt2/html/qurloperator-h.html
-share/doc/qt2/html/qurloperator-members.html
-share/doc/qt2/html/qurloperator.html
-share/doc/qt2/html/qvalidator-h.html
-share/doc/qt2/html/qvalidator-members.html
-share/doc/qt2/html/qvalidator.html
-share/doc/qt2/html/qvaluelist-h.html
-share/doc/qt2/html/qvaluelist-members.html
-share/doc/qt2/html/qvaluelist.html
-share/doc/qt2/html/qvaluelistconstiterator-members.html
-share/doc/qt2/html/qvaluelistconstiterator.html
-share/doc/qt2/html/qvaluelistiterator-members.html
-share/doc/qt2/html/qvaluelistiterator.html
-share/doc/qt2/html/qvaluestack-h.html
-share/doc/qt2/html/qvaluestack-members.html
-share/doc/qt2/html/qvaluestack.html
-share/doc/qt2/html/qvariant-h.html
-share/doc/qt2/html/qvariant-members.html
-share/doc/qt2/html/qvariant.html
-share/doc/qt2/html/qvbox-h.html
-share/doc/qt2/html/qvbox-m.png
-share/doc/qt2/html/qvbox-members.html
-share/doc/qt2/html/qvbox-w.png
-share/doc/qt2/html/qvbox.html
-share/doc/qt2/html/qvbox.png
-share/doc/qt2/html/qvboxlayout-members.html
-share/doc/qt2/html/qvboxlayout.html
-share/doc/qt2/html/qvbuttongroup-h.html
-share/doc/qt2/html/qvbuttongroup-members.html
-share/doc/qt2/html/qvbuttongroup.html
-share/doc/qt2/html/qvector-h.html
-share/doc/qt2/html/qvector-members.html
-share/doc/qt2/html/qvector.html
-share/doc/qt2/html/qvfb-qws.html
-share/doc/qt2/html/qvgroupbox-h.html
-share/doc/qt2/html/qvgroupbox-members.html
-share/doc/qt2/html/qvgroupbox.html
-share/doc/qt2/html/qwaitcondition-members.html
-share/doc/qt2/html/qwaitcondition.html
-share/doc/qt2/html/qwerty-main-cpp.html
-share/doc/qt2/html/qwhatsthis-h.html
-share/doc/qt2/html/qwhatsthis-members.html
-share/doc/qt2/html/qwhatsthis.html
-share/doc/qt2/html/qwheelevent-members.html
-share/doc/qt2/html/qwheelevent.html
-share/doc/qt2/html/qwidget-h.html
-share/doc/qt2/html/qwidget-members.html
-share/doc/qt2/html/qwidget.html
-share/doc/qt2/html/qwidgetitem-members.html
-share/doc/qt2/html/qwidgetitem.html
-share/doc/qt2/html/qwidgetstack-h.html
-share/doc/qt2/html/qwidgetstack-members.html
-share/doc/qt2/html/qwidgetstack.html
-share/doc/qt2/html/qwindowdefs-h.html
-share/doc/qt2/html/qwindowsstyle-h.html
-share/doc/qt2/html/qwindowsstyle-members.html
-share/doc/qt2/html/qwindowsstyle.html
-share/doc/qt2/html/qwindowsystem_qws-h.html
-share/doc/qt2/html/qwizard-h.html
-share/doc/qt2/html/qwizard-members.html
-share/doc/qt2/html/qwizard.html
-share/doc/qt2/html/qwmatrix-h.html
-share/doc/qt2/html/qwmatrix-members.html
-share/doc/qt2/html/qwmatrix.html
-share/doc/qt2/html/qworkspace-h.html
-share/doc/qt2/html/qworkspace-members.html
-share/doc/qt2/html/qworkspace.html
-share/doc/qt2/html/qwsdecoration-members.html
-share/doc/qt2/html/qwsdecoration.html
-share/doc/qt2/html/qwsdecoration_qws-h.html
-share/doc/qt2/html/qwskeyboardhandler-members.html
-share/doc/qt2/html/qwskeyboardhandler.html
-share/doc/qt2/html/qwsmouse_qws-h.html
-share/doc/qt2/html/qwsmousehandler-members.html
-share/doc/qt2/html/qwsmousehandler.html
-share/doc/qt2/html/qwsserver-members.html
-share/doc/qt2/html/qwsserver.html
-share/doc/qt2/html/qxml-h.html
-share/doc/qt2/html/qxmlattributes-members.html
-share/doc/qt2/html/qxmlattributes.html
-share/doc/qt2/html/qxmlcontenthandler-members.html
-share/doc/qt2/html/qxmlcontenthandler.html
-share/doc/qt2/html/qxmldeclhandler-members.html
-share/doc/qt2/html/qxmldeclhandler.html
-share/doc/qt2/html/qxmldefaulthandler-members.html
-share/doc/qt2/html/qxmldefaulthandler.html
-share/doc/qt2/html/qxmldtdhandler-members.html
-share/doc/qt2/html/qxmldtdhandler.html
-share/doc/qt2/html/qxmlentityresolver-members.html
-share/doc/qt2/html/qxmlentityresolver.html
-share/doc/qt2/html/qxmlerrorhandler-members.html
-share/doc/qt2/html/qxmlerrorhandler.html
-share/doc/qt2/html/qxmlinputsource-members.html
-share/doc/qt2/html/qxmlinputsource.html
-share/doc/qt2/html/qxmllexicalhandler-members.html
-share/doc/qt2/html/qxmllexicalhandler.html
-share/doc/qt2/html/qxmllocator-members.html
-share/doc/qt2/html/qxmllocator.html
-share/doc/qt2/html/qxmlnamespacesupport-members.html
-share/doc/qt2/html/qxmlnamespacesupport.html
-share/doc/qt2/html/qxmlparseexception-members.html
-share/doc/qt2/html/qxmlparseexception.html
-share/doc/qt2/html/qxmlreader-members.html
-share/doc/qt2/html/qxmlreader.html
-share/doc/qt2/html/qxmlsimplereader-members.html
-share/doc/qt2/html/qxmlsimplereader.html
-share/doc/qt2/html/qxt-h.html
-share/doc/qt2/html/qxtapplication-members.html
-share/doc/qt2/html/qxtapplication.html
-share/doc/qt2/html/qxtwidget-members.html
-share/doc/qt2/html/qxtwidget.html
-share/doc/qt2/html/rangecontrols-main-cpp.html
-share/doc/qt2/html/removed20.html
-share/doc/qt2/html/richtext-main-cpp.html
-share/doc/qt2/html/rintersect.png
-share/doc/qt2/html/rot13-rot13-cpp.html
-share/doc/qt2/html/rsubtract.png
-share/doc/qt2/html/runion.png
-share/doc/qt2/html/running-qws.html
-share/doc/qt2/html/rxor.png
-share/doc/qt2/html/scribble-main-cpp.html
-share/doc/qt2/html/scrollview-scrollview-cpp.html
-share/doc/qt2/html/session.html
-share/doc/qt2/html/session.png
-share/doc/qt2/html/shared.html
-share/doc/qt2/html/shclass.html
-share/doc/qt2/html/showimg-main-cpp.html
-share/doc/qt2/html/signalsandslots.html
-share/doc/qt2/html/simple-application.html
-share/doc/qt2/html/smooth.png
-share/doc/qt2/html/splitter-splitter-cpp.html
-share/doc/qt2/html/splitter-views-m.png
-share/doc/qt2/html/splitter-views-w.png
-share/doc/qt2/html/t1.html
-share/doc/qt2/html/t1.png
-share/doc/qt2/html/t10-cannon-cpp.html
-share/doc/qt2/html/t10-cannon-h.html
-share/doc/qt2/html/t10-lcdrange-cpp.html
-share/doc/qt2/html/t10-lcdrange-h.html
-share/doc/qt2/html/t10-main-cpp.html
-share/doc/qt2/html/t10-makefile.html
-share/doc/qt2/html/t10.html
-share/doc/qt2/html/t10.png
-share/doc/qt2/html/t11-cannon-cpp.html
-share/doc/qt2/html/t11-cannon-h.html
-share/doc/qt2/html/t11-lcdrange-cpp.html
-share/doc/qt2/html/t11-lcdrange-h.html
-share/doc/qt2/html/t11-main-cpp.html
-share/doc/qt2/html/t11-makefile.html
-share/doc/qt2/html/t11.html
-share/doc/qt2/html/t11.png
-share/doc/qt2/html/t12-cannon-cpp.html
-share/doc/qt2/html/t12-cannon-h.html
-share/doc/qt2/html/t12-lcdrange-cpp.html
-share/doc/qt2/html/t12-lcdrange-h.html
-share/doc/qt2/html/t12-main-cpp.html
-share/doc/qt2/html/t12-makefile.html
-share/doc/qt2/html/t12.html
-share/doc/qt2/html/t12.png
-share/doc/qt2/html/t13-cannon-cpp.html
-share/doc/qt2/html/t13-cannon-h.html
-share/doc/qt2/html/t13-gamebrd-cpp.html
-share/doc/qt2/html/t13-gamebrd-h.html
-share/doc/qt2/html/t13-lcdrange-cpp.html
-share/doc/qt2/html/t13-lcdrange-h.html
-share/doc/qt2/html/t13-main-cpp.html
-share/doc/qt2/html/t13-makefile.html
-share/doc/qt2/html/t13.html
-share/doc/qt2/html/t13.png
-share/doc/qt2/html/t14-cannon-cpp.html
-share/doc/qt2/html/t14-cannon-h.html
-share/doc/qt2/html/t14-gamebrd-cpp.html
-share/doc/qt2/html/t14-gamebrd-h.html
-share/doc/qt2/html/t14-lcdrange-cpp.html
-share/doc/qt2/html/t14-lcdrange-h.html
-share/doc/qt2/html/t14-main-cpp.html
-share/doc/qt2/html/t14-makefile.html
-share/doc/qt2/html/t14.html
-share/doc/qt2/html/t14.png
-share/doc/qt2/html/t2.html
-share/doc/qt2/html/t2.png
-share/doc/qt2/html/t3.html
-share/doc/qt2/html/t3.png
-share/doc/qt2/html/t4.html
-share/doc/qt2/html/t4.png
-share/doc/qt2/html/t5.html
-share/doc/qt2/html/t5.png
-share/doc/qt2/html/t6.html
-share/doc/qt2/html/t6.png
-share/doc/qt2/html/t7-lcdrange-cpp.html
-share/doc/qt2/html/t7-lcdrange-h.html
-share/doc/qt2/html/t7-main-cpp.html
-share/doc/qt2/html/t7-makefile.html
-share/doc/qt2/html/t7.html
-share/doc/qt2/html/t7.png
-share/doc/qt2/html/t8-cannon-cpp.html
-share/doc/qt2/html/t8-cannon-h.html
-share/doc/qt2/html/t8-lcdrange-cpp.html
-share/doc/qt2/html/t8-lcdrange-h.html
-share/doc/qt2/html/t8-main-cpp.html
-share/doc/qt2/html/t8-makefile.html
-share/doc/qt2/html/t8.html
-share/doc/qt2/html/t8.png
-share/doc/qt2/html/t9-cannon-cpp.html
-share/doc/qt2/html/t9-cannon-h.html
-share/doc/qt2/html/t9-lcdrange-cpp.html
-share/doc/qt2/html/t9-lcdrange-h.html
-share/doc/qt2/html/t9-main-cpp.html
-share/doc/qt2/html/t9-makefile.html
-share/doc/qt2/html/t9.html
-share/doc/qt2/html/t9.png
-share/doc/qt2/html/t9_1.png
-share/doc/qt2/html/t9_2.png
-share/doc/qt2/html/tabdialog-main-cpp.html
-share/doc/qt2/html/table.html
-share/doc/qt2/html/test.png
-share/doc/qt2/html/tetrix-tetrix-cpp.html
-share/doc/qt2/html/themes-main-cpp.html
-share/doc/qt2/html/threads.html
-share/doc/qt2/html/tictac-main-cpp.html
-share/doc/qt2/html/time.html
-share/doc/qt2/html/timers.html
-share/doc/qt2/html/titleindex
-share/doc/qt2/html/tools.html
-share/doc/qt2/html/tooltip-main-cpp.html
-share/doc/qt2/html/topicals.html
-share/doc/qt2/html/trivial-trivial-cpp.html
-share/doc/qt2/html/troll.html
-share/doc/qt2/html/tutorial.html
-share/doc/qt2/html/tutorial.png
-share/doc/qt2/html/unicode.html
-share/doc/qt2/html/unsmooth.png
-share/doc/qt2/html/validator-main-cpp.html
-share/doc/qt2/html/walkthroughs.html
-share/doc/qt2/html/whatsthis
-share/doc/qt2/html/whatsthis.png
-share/doc/qt2/html/winsystem.html
-share/doc/qt2/html/wizard-main-cpp.html
-share/doc/qt2/html/workspace.html
-share/doc/qt2/html/xform-xform-cpp.html
-share/doc/qt2/html/xml-dom.html
-share/doc/qt2/html/xml-sax-walkthrough.html
-share/doc/qt2/html/xml-sax.html
-share/doc/qt2/html/xml-tagreader-tagreader-cpp.html
-share/doc/qt2/html/xml-tagreader-with-features-tagreader-cpp.html
-share/doc/qt2/html/xml.html
-share/doc/qt2/html/xt.html
-share/doc/qt2/html/y2k.html
-@dirrm share/doc/qt2/html
-@dirrm share/doc/qt2
-@dirrm include/qt2
+share/doc/qt/ANNOUNCE
+share/doc/qt/FAQ
+share/doc/qt/PORTING
+share/doc/qt/README
+share/doc/qt/README.QT
+share/doc/qt/html/HOWTO-framebuffer.html
+share/doc/qt/html/aboutqt.html
+share/doc/qt/html/abstractwidgets.html
+share/doc/qt/html/accel.html
+share/doc/qt/html/accelerators.html
+share/doc/qt/html/aclock-main-cpp.html
+share/doc/qt/html/action-main-cpp.html
+share/doc/qt/html/addressbook-main-cpp.html
+share/doc/qt/html/advanced.html
+share/doc/qt/html/annotated.html
+share/doc/qt/html/appearance.html
+share/doc/qt/html/appicon.html
+share/doc/qt/html/application-main-cpp.html
+share/doc/qt/html/application.html
+share/doc/qt/html/basic.html
+share/doc/qt/html/bearings.png
+share/doc/qt/html/biff-main-cpp.html
+share/doc/qt/html/book.png
+share/doc/qt/html/bughowto.html
+share/doc/qt/html/buttongroup-m.png
+share/doc/qt/html/buttongroup-w.png
+share/doc/qt/html/buttongroups-main-cpp.html
+share/doc/qt/html/buyhowto.html
+share/doc/qt/html/canvas.html
+share/doc/qt/html/casestudy-qws.html
+share/doc/qt/html/changes21.html
+share/doc/qt/html/changes211.html
+share/doc/qt/html/changes22.html
+share/doc/qt/html/changes23.html
+share/doc/qt/html/charinput-qws.html
+share/doc/qt/html/checklists-main-cpp.html
+share/doc/qt/html/classes.html
+share/doc/qt/html/collection.html
+share/doc/qt/html/commonproblems.html
+share/doc/qt/html/coordsys.html
+share/doc/qt/html/coordsys.png
+share/doc/qt/html/credits.html
+share/doc/qt/html/cursor-cursor-cpp.html
+share/doc/qt/html/customlayout-main-cpp.html
+share/doc/qt/html/customlayout.html
+share/doc/qt/html/datastreamformat.html
+share/doc/qt/html/dclock-main-cpp.html
+share/doc/qt/html/debug.html
+share/doc/qt/html/design.html
+share/doc/qt/html/designer.html
+share/doc/qt/html/designer.png
+share/doc/qt/html/desktop-desktop-cpp.html
+share/doc/qt/html/dialogs.html
+share/doc/qt/html/dirview-main-cpp.html
+share/doc/qt/html/dnd.html
+share/doc/qt/html/dochead.png
+share/doc/qt/html/draganddrop.html
+share/doc/qt/html/drawdemo-drawdemo-cpp.html
+share/doc/qt/html/drawing.html
+share/doc/qt/html/drawlines-connect-cpp.html
+share/doc/qt/html/easteregg.html
+share/doc/qt/html/easteregg2.html
+share/doc/qt/html/embedclasses.html
+share/doc/qt/html/environment.html
+share/doc/qt/html/envvars.html
+share/doc/qt/html/eventsandfilters.html
+share/doc/qt/html/examples.html
+share/doc/qt/html/face.png
+share/doc/qt/html/features.html
+share/doc/qt/html/fileiconview-main-cpp.html
+share/doc/qt/html/focus.html
+share/doc/qt/html/fontdir.html
+share/doc/qt/html/fonts-qws.html
+share/doc/qt/html/forever-forever-cpp.html
+share/doc/qt/html/frames.png
+share/doc/qt/html/functions.html
+share/doc/qt/html/geomanagement.html
+share/doc/qt/html/geometry.html
+share/doc/qt/html/geometry.png
+share/doc/qt/html/gpl.html
+share/doc/qt/html/graph.g1n
+share/doc/qt/html/grapher-grapher-cpp.html
+share/doc/qt/html/gridlayout.png
+share/doc/qt/html/groupbox-m.png
+share/doc/qt/html/groupbox-w.png
+share/doc/qt/html/guibooks.html
+share/doc/qt/html/headers.html
+share/doc/qt/html/hello-main-cpp.html
+share/doc/qt/html/helpsystem.html
+share/doc/qt/html/helpviewer-main-cpp.html
+share/doc/qt/html/hierarchy.html
+share/doc/qt/html/i18n-main-cpp.html
+share/doc/qt/html/i18n.html
+share/doc/qt/html/iconview-main-cpp.html
+share/doc/qt/html/iconview.html
+share/doc/qt/html/imageio.html
+share/doc/qt/html/images.html
+share/doc/qt/html/index
+share/doc/qt/html/index.html
+share/doc/qt/html/install-qws.html
+share/doc/qt/html/install-win.html
+share/doc/qt/html/install-x11.html
+share/doc/qt/html/installation.html
+share/doc/qt/html/io.html
+share/doc/qt/html/keyfeatures21.html
+share/doc/qt/html/keyfeatures22.html
+share/doc/qt/html/layout-layout-cpp.html
+share/doc/qt/html/layout.html
+share/doc/qt/html/letter.png
+share/doc/qt/html/license.html
+share/doc/qt/html/licenses.html
+share/doc/qt/html/life-main-cpp.html
+share/doc/qt/html/lineedits-main-cpp.html
+share/doc/qt/html/listbox-main-cpp.html
+share/doc/qt/html/listboxcombo-main-cpp.html
+share/doc/qt/html/listviews-main-cpp.html
+share/doc/qt/html/mailinglists.html
+share/doc/qt/html/mainlyMotif-editor-cpp.html
+share/doc/qt/html/mainlyQt-editor-cpp.html
+share/doc/qt/html/mainlyXt-editor-cpp.html
+share/doc/qt/html/mainwindow-m.png
+share/doc/qt/html/mainwindow-w.png
+share/doc/qt/html/mdi-main-cpp.html
+share/doc/qt/html/menu-menu-cpp.html
+share/doc/qt/html/metaobjects.html
+share/doc/qt/html/misc.html
+share/doc/qt/html/moc.html
+share/doc/qt/html/modules.html
+share/doc/qt/html/movies-main-cpp.html
+share/doc/qt/html/network.html
+share/doc/qt/html/nsplugin.html
+share/doc/qt/html/object.html
+share/doc/qt/html/objectmodel.html
+share/doc/qt/html/objecttrees.html
+share/doc/qt/html/opengl.html
+share/doc/qt/html/organizers.html
+share/doc/qt/html/palette.png
+share/doc/qt/html/picture-picture-cpp.html
+share/doc/qt/html/pictures.html
+share/doc/qt/html/pnglogo.png
+share/doc/qt/html/pointer-qws.html
+share/doc/qt/html/popup-popup-cpp.html
+share/doc/qt/html/porting-qws.html
+share/doc/qt/html/porting.html
+share/doc/qt/html/primes.html
+share/doc/qt/html/progress-progress-cpp.html
+share/doc/qt/html/progressbar-main-cpp.html
+share/doc/qt/html/properties.html
+share/doc/qt/html/propertyindex
+share/doc/qt/html/qabstractlayout-h.html
+share/doc/qt/html/qaccel-h.html
+share/doc/qt/html/qaccel-members.html
+share/doc/qt/html/qaccel.html
+share/doc/qt/html/qaction-h.html
+share/doc/qt/html/qaction-members.html
+share/doc/qt/html/qaction.html
+share/doc/qt/html/qactiongroup-members.html
+share/doc/qt/html/qactiongroup.html
+share/doc/qt/html/qapplication-h.html
+share/doc/qt/html/qapplication-members.html
+share/doc/qt/html/qapplication.html
+share/doc/qt/html/qarray-h.html
+share/doc/qt/html/qarray-members.html
+share/doc/qt/html/qarray.html
+share/doc/qt/html/qasciicache-h.html
+share/doc/qt/html/qasciicache-members.html
+share/doc/qt/html/qasciicache.html
+share/doc/qt/html/qasciicacheiterator-members.html
+share/doc/qt/html/qasciicacheiterator.html
+share/doc/qt/html/qasciidict-h.html
+share/doc/qt/html/qasciidict-members.html
+share/doc/qt/html/qasciidict.html
+share/doc/qt/html/qasciidictiterator-members.html
+share/doc/qt/html/qasciidictiterator.html
+share/doc/qt/html/qasyncimageio-h.html
+share/doc/qt/html/qasyncio-h.html
+share/doc/qt/html/qasyncio-members.html
+share/doc/qt/html/qasyncio.html
+share/doc/qt/html/qbitarray-h.html
+share/doc/qt/html/qbitarray-members.html
+share/doc/qt/html/qbitarray.html
+share/doc/qt/html/qbitmap-h.html
+share/doc/qt/html/qbitmap-members.html
+share/doc/qt/html/qbitmap.html
+share/doc/qt/html/qbitval-members.html
+share/doc/qt/html/qbitval.html
+share/doc/qt/html/qboxlayout-members.html
+share/doc/qt/html/qboxlayout.html
+share/doc/qt/html/qbrush-h.html
+share/doc/qt/html/qbrush-members.html
+share/doc/qt/html/qbrush.html
+share/doc/qt/html/qbttngrp-m.png
+share/doc/qt/html/qbttngrp-w.png
+share/doc/qt/html/qbuffer-h.html
+share/doc/qt/html/qbuffer-members.html
+share/doc/qt/html/qbuffer.html
+share/doc/qt/html/qbutton-h.html
+share/doc/qt/html/qbutton-members.html
+share/doc/qt/html/qbutton.html
+share/doc/qt/html/qbuttongroup-h.html
+share/doc/qt/html/qbuttongroup-members.html
+share/doc/qt/html/qbuttongroup.html
+share/doc/qt/html/qbytearray-members.html
+share/doc/qt/html/qbytearray.html
+share/doc/qt/html/qcache-h.html
+share/doc/qt/html/qcache-members.html
+share/doc/qt/html/qcache.html
+share/doc/qt/html/qcacheiterator-members.html
+share/doc/qt/html/qcacheiterator.html
+share/doc/qt/html/qcanvas-h.html
+share/doc/qt/html/qcanvas-members.html
+share/doc/qt/html/qcanvas.html
+share/doc/qt/html/qcanvas.png
+share/doc/qt/html/qcanvasellipse-members.html
+share/doc/qt/html/qcanvasellipse.html
+share/doc/qt/html/qcanvasitem-members.html
+share/doc/qt/html/qcanvasitem.html
+share/doc/qt/html/qcanvasline-members.html
+share/doc/qt/html/qcanvasline.html
+share/doc/qt/html/qcanvaspixmap-members.html
+share/doc/qt/html/qcanvaspixmap.html
+share/doc/qt/html/qcanvaspixmaparray-members.html
+share/doc/qt/html/qcanvaspixmaparray.html
+share/doc/qt/html/qcanvaspolygon-members.html
+share/doc/qt/html/qcanvaspolygon.html
+share/doc/qt/html/qcanvaspolygonalitem-members.html
+share/doc/qt/html/qcanvaspolygonalitem.html
+share/doc/qt/html/qcanvasrectangle-members.html
+share/doc/qt/html/qcanvasrectangle.html
+share/doc/qt/html/qcanvassprite-members.html
+share/doc/qt/html/qcanvassprite.html
+share/doc/qt/html/qcanvastext-members.html
+share/doc/qt/html/qcanvastext.html
+share/doc/qt/html/qcanvasview-members.html
+share/doc/qt/html/qcanvasview.html
+share/doc/qt/html/qcdestyle-h.html
+share/doc/qt/html/qcdestyle-members.html
+share/doc/qt/html/qcdestyle.html
+share/doc/qt/html/qchar-members.html
+share/doc/qt/html/qchar.html
+share/doc/qt/html/qcharref-members.html
+share/doc/qt/html/qcharref.html
+share/doc/qt/html/qcheckbox-h.html
+share/doc/qt/html/qcheckbox-m.png
+share/doc/qt/html/qcheckbox-members.html
+share/doc/qt/html/qcheckbox-w.png
+share/doc/qt/html/qcheckbox.html
+share/doc/qt/html/qchecklistitem-members.html
+share/doc/qt/html/qchecklistitem.html
+share/doc/qt/html/qchildevent-members.html
+share/doc/qt/html/qchildevent.html
+share/doc/qt/html/qchkbox-m.png
+share/doc/qt/html/qchkbox-w.png
+share/doc/qt/html/qclassinfo-members.html
+share/doc/qt/html/qclipboard-h.html
+share/doc/qt/html/qclipboard-members.html
+share/doc/qt/html/qclipboard.html
+share/doc/qt/html/qcloseevent-members.html
+share/doc/qt/html/qcloseevent.html
+share/doc/qt/html/qcollection-h.html
+share/doc/qt/html/qcollection-members.html
+share/doc/qt/html/qcollection.html
+share/doc/qt/html/qcolor-h.html
+share/doc/qt/html/qcolor-members.html
+share/doc/qt/html/qcolor.html
+share/doc/qt/html/qcolordialog-h.html
+share/doc/qt/html/qcolordialog-members.html
+share/doc/qt/html/qcolordialog.html
+share/doc/qt/html/qcolordlg-m.png
+share/doc/qt/html/qcolordlg-w.png
+share/doc/qt/html/qcolordrag-members.html
+share/doc/qt/html/qcolordrag.html
+share/doc/qt/html/qcolorgroup-members.html
+share/doc/qt/html/qcolorgroup.html
+share/doc/qt/html/qcombo1-m.png
+share/doc/qt/html/qcombo1-w.png
+share/doc/qt/html/qcombo2-m.png
+share/doc/qt/html/qcombo2-w.png
+share/doc/qt/html/qcombo3-m.png
+share/doc/qt/html/qcombo3-w.png
+share/doc/qt/html/qcombobox-h.html
+share/doc/qt/html/qcombobox-members.html
+share/doc/qt/html/qcombobox.html
+share/doc/qt/html/qcommonstyle-h.html
+share/doc/qt/html/qcommonstyle-members.html
+share/doc/qt/html/qcommonstyle.html
+share/doc/qt/html/qconnection-h.html
+share/doc/qt/html/qconnection-members.html
+share/doc/qt/html/qconnection.html
+share/doc/qt/html/qconststring-members.html
+share/doc/qt/html/qconststring.html
+share/doc/qt/html/qcopchannel-members.html
+share/doc/qt/html/qcopchannel.html
+share/doc/qt/html/qcopchannel_qws-h.html
+share/doc/qt/html/qcstring-h.html
+share/doc/qt/html/qcstring-members.html
+share/doc/qt/html/qcstring.html
+share/doc/qt/html/qcursor-h.html
+share/doc/qt/html/qcursor-members.html
+share/doc/qt/html/qcursor.html
+share/doc/qt/html/qcustomevent-members.html
+share/doc/qt/html/qcustomevent.html
+share/doc/qt/html/qcustommenuitem-members.html
+share/doc/qt/html/qcustommenuitem.html
+share/doc/qt/html/qdatapump-members.html
+share/doc/qt/html/qdatapump.html
+share/doc/qt/html/qdatasink-members.html
+share/doc/qt/html/qdatasink.html
+share/doc/qt/html/qdatasource-members.html
+share/doc/qt/html/qdatasource.html
+share/doc/qt/html/qdatastream-h.html
+share/doc/qt/html/qdatastream-members.html
+share/doc/qt/html/qdatastream.html
+share/doc/qt/html/qdate-members.html
+share/doc/qt/html/qdate.html
+share/doc/qt/html/qdatetime-h.html
+share/doc/qt/html/qdatetime-members.html
+share/doc/qt/html/qdatetime.html
+share/doc/qt/html/qdial-h.html
+share/doc/qt/html/qdial-m.png
+share/doc/qt/html/qdial-members.html
+share/doc/qt/html/qdial-w.png
+share/doc/qt/html/qdial.html
+share/doc/qt/html/qdialog-h.html
+share/doc/qt/html/qdialog-members.html
+share/doc/qt/html/qdialog.html
+share/doc/qt/html/qdict-h.html
+share/doc/qt/html/qdict-members.html
+share/doc/qt/html/qdict.html
+share/doc/qt/html/qdictiterator-members.html
+share/doc/qt/html/qdictiterator.html
+share/doc/qt/html/qdir-h.html
+share/doc/qt/html/qdir-members.html
+share/doc/qt/html/qdir.html
+share/doc/qt/html/qdns-h.html
+share/doc/qt/html/qdns-members.html
+share/doc/qt/html/qdns.html
+share/doc/qt/html/qdom-h.html
+share/doc/qt/html/qdomattr-members.html
+share/doc/qt/html/qdomattr.html
+share/doc/qt/html/qdomcdatasection-members.html
+share/doc/qt/html/qdomcdatasection.html
+share/doc/qt/html/qdomcharacterdata-members.html
+share/doc/qt/html/qdomcharacterdata.html
+share/doc/qt/html/qdomcomment-members.html
+share/doc/qt/html/qdomcomment.html
+share/doc/qt/html/qdomdocument-members.html
+share/doc/qt/html/qdomdocument.html
+share/doc/qt/html/qdomdocumentfragment-members.html
+share/doc/qt/html/qdomdocumentfragment.html
+share/doc/qt/html/qdomdocumenttype-members.html
+share/doc/qt/html/qdomdocumenttype.html
+share/doc/qt/html/qdomelement-members.html
+share/doc/qt/html/qdomelement.html
+share/doc/qt/html/qdomentity-members.html
+share/doc/qt/html/qdomentity.html
+share/doc/qt/html/qdomentityreference-members.html
+share/doc/qt/html/qdomentityreference.html
+share/doc/qt/html/qdomimplementation-members.html
+share/doc/qt/html/qdomimplementation.html
+share/doc/qt/html/qdomnamednodemap-members.html
+share/doc/qt/html/qdomnamednodemap.html
+share/doc/qt/html/qdomnode-members.html
+share/doc/qt/html/qdomnode.html
+share/doc/qt/html/qdomnodelist-members.html
+share/doc/qt/html/qdomnodelist.html
+share/doc/qt/html/qdomnotation-members.html
+share/doc/qt/html/qdomnotation.html
+share/doc/qt/html/qdomprocessinginstruction-members.html
+share/doc/qt/html/qdomprocessinginstruction.html
+share/doc/qt/html/qdomtext-members.html
+share/doc/qt/html/qdomtext.html
+share/doc/qt/html/qdoublevalidator-members.html
+share/doc/qt/html/qdoublevalidator.html
+share/doc/qt/html/qdragenterevent-members.html
+share/doc/qt/html/qdragenterevent.html
+share/doc/qt/html/qdragleaveevent-members.html
+share/doc/qt/html/qdragleaveevent.html
+share/doc/qt/html/qdragmoveevent-members.html
+share/doc/qt/html/qdragmoveevent.html
+share/doc/qt/html/qdragobject-h.html
+share/doc/qt/html/qdragobject-members.html
+share/doc/qt/html/qdragobject.html
+share/doc/qt/html/qdrawutil-h.html
+share/doc/qt/html/qdropevent-members.html
+share/doc/qt/html/qdropevent.html
+share/doc/qt/html/qdropsite-h.html
+share/doc/qt/html/qdropsite-members.html
+share/doc/qt/html/qdropsite.html
+share/doc/qt/html/qembed.html
+share/doc/qt/html/qeucjpcodec-h.html
+share/doc/qt/html/qeucjpcodec-members.html
+share/doc/qt/html/qeucjpcodec.html
+share/doc/qt/html/qeuckrcodec-h.html
+share/doc/qt/html/qeuckrcodec-members.html
+share/doc/qt/html/qeuckrcodec.html
+share/doc/qt/html/qevent-h.html
+share/doc/qt/html/qevent-members.html
+share/doc/qt/html/qevent.html
+share/doc/qt/html/qfd-qfd-cpp.html
+share/doc/qt/html/qfile-h.html
+share/doc/qt/html/qfile-members.html
+share/doc/qt/html/qfile.html
+share/doc/qt/html/qfiledialog-h.html
+share/doc/qt/html/qfiledialog-members.html
+share/doc/qt/html/qfiledialog.html
+share/doc/qt/html/qfiledlg-m.png
+share/doc/qt/html/qfiledlg-w.png
+share/doc/qt/html/qfileiconprovider-members.html
+share/doc/qt/html/qfileiconprovider.html
+share/doc/qt/html/qfileinfo-h.html
+share/doc/qt/html/qfileinfo-members.html
+share/doc/qt/html/qfileinfo.html
+share/doc/qt/html/qfilepreview-members.html
+share/doc/qt/html/qfilepreview.html
+share/doc/qt/html/qfocusdata-h.html
+share/doc/qt/html/qfocusdata-members.html
+share/doc/qt/html/qfocusdata.html
+share/doc/qt/html/qfocusevent-members.html
+share/doc/qt/html/qfocusevent.html
+share/doc/qt/html/qfont-h.html
+share/doc/qt/html/qfont-members.html
+share/doc/qt/html/qfont.html
+share/doc/qt/html/qfontdatabase-h.html
+share/doc/qt/html/qfontdatabase-members.html
+share/doc/qt/html/qfontdatabase.html
+share/doc/qt/html/qfontdialog-h.html
+share/doc/qt/html/qfontdialog-members.html
+share/doc/qt/html/qfontdialog.html
+share/doc/qt/html/qfontdlg-m.png
+share/doc/qt/html/qfontdlg-w.png
+share/doc/qt/html/qfontinfo-h.html
+share/doc/qt/html/qfontinfo-members.html
+share/doc/qt/html/qfontinfo.html
+share/doc/qt/html/qfontmanager-members.html
+share/doc/qt/html/qfontmanager_qws-h.html
+share/doc/qt/html/qfontmetrics-h.html
+share/doc/qt/html/qfontmetrics-members.html
+share/doc/qt/html/qfontmetrics.html
+share/doc/qt/html/qframe-h.html
+share/doc/qt/html/qframe-members.html
+share/doc/qt/html/qframe.html
+share/doc/qt/html/qftp-h.html
+share/doc/qt/html/qftp-members.html
+share/doc/qt/html/qftp.html
+share/doc/qt/html/qgarray-h.html
+share/doc/qt/html/qgarray-members.html
+share/doc/qt/html/qgarray.html
+share/doc/qt/html/qgbkcodec-h.html
+share/doc/qt/html/qgbkcodec-members.html
+share/doc/qt/html/qgbkcodec.html
+share/doc/qt/html/qgcache-h.html
+share/doc/qt/html/qgcache-members.html
+share/doc/qt/html/qgcache.html
+share/doc/qt/html/qgcacheiterator-members.html
+share/doc/qt/html/qgcacheiterator.html
+share/doc/qt/html/qgdict-h.html
+share/doc/qt/html/qgdict-members.html
+share/doc/qt/html/qgdict.html
+share/doc/qt/html/qgdictiterator-members.html
+share/doc/qt/html/qgdictiterator.html
+share/doc/qt/html/qgfx_qws-h.html
+share/doc/qt/html/qgfxraster_qws-h.html
+share/doc/qt/html/qgfxrasterbase-members.html
+share/doc/qt/html/qgl-h.html
+share/doc/qt/html/qgl-members.html
+share/doc/qt/html/qgl.html
+share/doc/qt/html/qglayoutiterator-members.html
+share/doc/qt/html/qglayoutiterator.html
+share/doc/qt/html/qglcontext-members.html
+share/doc/qt/html/qglcontext.html
+share/doc/qt/html/qglformat-members.html
+share/doc/qt/html/qglformat.html
+share/doc/qt/html/qglist-h.html
+share/doc/qt/html/qglist-members.html
+share/doc/qt/html/qglist.html
+share/doc/qt/html/qglistiterator-members.html
+share/doc/qt/html/qglistiterator.html
+share/doc/qt/html/qglobal-h.html
+share/doc/qt/html/qglwidget-members.html
+share/doc/qt/html/qglwidget.html
+share/doc/qt/html/qgrid-h.html
+share/doc/qt/html/qgrid-m.png
+share/doc/qt/html/qgrid-members.html
+share/doc/qt/html/qgrid-w.png
+share/doc/qt/html/qgrid.html
+share/doc/qt/html/qgrid.png
+share/doc/qt/html/qgridlayout-members.html
+share/doc/qt/html/qgridlayout.html
+share/doc/qt/html/qgroupbox-h.html
+share/doc/qt/html/qgroupbox-members.html
+share/doc/qt/html/qgroupbox.html
+share/doc/qt/html/qgrpbox-m.png
+share/doc/qt/html/qgrpbox-w.png
+share/doc/qt/html/qguardedptr-h.html
+share/doc/qt/html/qguardedptr-members.html
+share/doc/qt/html/qguardedptr.html
+share/doc/qt/html/qgvector-h.html
+share/doc/qt/html/qgvector-members.html
+share/doc/qt/html/qgvector.html
+share/doc/qt/html/qhbox-h.html
+share/doc/qt/html/qhbox-m.png
+share/doc/qt/html/qhbox-members.html
+share/doc/qt/html/qhbox-w.png
+share/doc/qt/html/qhbox.html
+share/doc/qt/html/qhbox.png
+share/doc/qt/html/qhboxlayout-members.html
+share/doc/qt/html/qhboxlayout.html
+share/doc/qt/html/qhbuttongroup-h.html
+share/doc/qt/html/qhbuttongroup-members.html
+share/doc/qt/html/qhbuttongroup.html
+share/doc/qt/html/qheader-h.html
+share/doc/qt/html/qheader-m.png
+share/doc/qt/html/qheader-members.html
+share/doc/qt/html/qheader-w.png
+share/doc/qt/html/qheader.html
+share/doc/qt/html/qhgroupbox-h.html
+share/doc/qt/html/qhgroupbox-members.html
+share/doc/qt/html/qhgroupbox.html
+share/doc/qt/html/qhideevent-members.html
+share/doc/qt/html/qhideevent.html
+share/doc/qt/html/qhostaddress-h.html
+share/doc/qt/html/qhostaddress-members.html
+share/doc/qt/html/qhostaddress.html
+share/doc/qt/html/qicondrag-members.html
+share/doc/qt/html/qicondrag.html
+share/doc/qt/html/qicondragitem-members.html
+share/doc/qt/html/qicondragitem.html
+share/doc/qt/html/qiconset-h.html
+share/doc/qt/html/qiconset-members.html
+share/doc/qt/html/qiconset.html
+share/doc/qt/html/qiconview-h.html
+share/doc/qt/html/qiconview-m.png
+share/doc/qt/html/qiconview-members.html
+share/doc/qt/html/qiconview-w.png
+share/doc/qt/html/qiconview.html
+share/doc/qt/html/qiconviewitem-members.html
+share/doc/qt/html/qiconviewitem.html
+share/doc/qt/html/qimage-h.html
+share/doc/qt/html/qimage-members.html
+share/doc/qt/html/qimage.html
+share/doc/qt/html/qimageconsumer-members.html
+share/doc/qt/html/qimageconsumer.html
+share/doc/qt/html/qimagedecoder-members.html
+share/doc/qt/html/qimagedecoder.html
+share/doc/qt/html/qimagedrag-members.html
+share/doc/qt/html/qimagedrag.html
+share/doc/qt/html/qimageformat-members.html
+share/doc/qt/html/qimageformat.html
+share/doc/qt/html/qimageformattype-members.html
+share/doc/qt/html/qimageformattype.html
+share/doc/qt/html/qimageio-members.html
+share/doc/qt/html/qimageio.html
+share/doc/qt/html/qinputdialog-h.html
+share/doc/qt/html/qinputdialog-members.html
+share/doc/qt/html/qinputdialog.html
+share/doc/qt/html/qintcache-h.html
+share/doc/qt/html/qintcache-members.html
+share/doc/qt/html/qintcache.html
+share/doc/qt/html/qintcacheiterator-members.html
+share/doc/qt/html/qintcacheiterator.html
+share/doc/qt/html/qintdict-h.html
+share/doc/qt/html/qintdict-members.html
+share/doc/qt/html/qintdict.html
+share/doc/qt/html/qintdictiterator-members.html
+share/doc/qt/html/qintdictiterator.html
+share/doc/qt/html/qinterlacestyle-h.html
+share/doc/qt/html/qinterlacestyle-members.html
+share/doc/qt/html/qinterlacestyle.html
+share/doc/qt/html/qintvalidator-members.html
+share/doc/qt/html/qintvalidator.html
+share/doc/qt/html/qiodevice-h.html
+share/doc/qt/html/qiodevice-members.html
+share/doc/qt/html/qiodevice.html
+share/doc/qt/html/qiodevicesource-members.html
+share/doc/qt/html/qiodevicesource.html
+share/doc/qt/html/qjiscodec-h.html
+share/doc/qt/html/qjiscodec-members.html
+share/doc/qt/html/qjiscodec.html
+share/doc/qt/html/qjpunicode-h.html
+share/doc/qt/html/qjpunicodeconv-members.html
+share/doc/qt/html/qjpunicodeconv.html
+share/doc/qt/html/qkeyboard_qws-h.html
+share/doc/qt/html/qkeyevent-members.html
+share/doc/qt/html/qkeyevent.html
+share/doc/qt/html/qlabel-h.html
+share/doc/qt/html/qlabel-m.png
+share/doc/qt/html/qlabel-members.html
+share/doc/qt/html/qlabel-w.png
+share/doc/qt/html/qlabel.html
+share/doc/qt/html/qlayout-h.html
+share/doc/qt/html/qlayout-members.html
+share/doc/qt/html/qlayout.html
+share/doc/qt/html/qlayoutitem-members.html
+share/doc/qt/html/qlayoutitem.html
+share/doc/qt/html/qlayoutiterator-members.html
+share/doc/qt/html/qlayoutiterator.html
+share/doc/qt/html/qlcdnum-m.png
+share/doc/qt/html/qlcdnum-w.png
+share/doc/qt/html/qlcdnumber-h.html
+share/doc/qt/html/qlcdnumber-members.html
+share/doc/qt/html/qlcdnumber.html
+share/doc/qt/html/qlined-m.png
+share/doc/qt/html/qlined-w.png
+share/doc/qt/html/qlineedit-h.html
+share/doc/qt/html/qlineedit-members.html
+share/doc/qt/html/qlineedit.html
+share/doc/qt/html/qlist-h.html
+share/doc/qt/html/qlist-members.html
+share/doc/qt/html/qlist.html
+share/doc/qt/html/qlistbox-h.html
+share/doc/qt/html/qlistbox-m.png
+share/doc/qt/html/qlistbox-members.html
+share/doc/qt/html/qlistbox-w.png
+share/doc/qt/html/qlistbox.html
+share/doc/qt/html/qlistboxitem-members.html
+share/doc/qt/html/qlistboxitem.html
+share/doc/qt/html/qlistboxpixmap-members.html
+share/doc/qt/html/qlistboxpixmap.html
+share/doc/qt/html/qlistboxtext-members.html
+share/doc/qt/html/qlistboxtext.html
+share/doc/qt/html/qlistiterator-members.html
+share/doc/qt/html/qlistiterator.html
+share/doc/qt/html/qlistview-h.html
+share/doc/qt/html/qlistview-m.png
+share/doc/qt/html/qlistview-members.html
+share/doc/qt/html/qlistview-w.png
+share/doc/qt/html/qlistview.html
+share/doc/qt/html/qlistviewitem-members.html
+share/doc/qt/html/qlistviewitem.html
+share/doc/qt/html/qlistviewitemiterator-members.html
+share/doc/qt/html/qlistviewitemiterator.html
+share/doc/qt/html/qlnode-members.html
+share/doc/qt/html/qlnode.html
+share/doc/qt/html/qlocalfs-h.html
+share/doc/qt/html/qlocalfs-members.html
+share/doc/qt/html/qlocalfs.html
+share/doc/qt/html/qlock-members.html
+share/doc/qt/html/qlock_qws-h.html
+share/doc/qt/html/qmag-qmag-cpp.html
+share/doc/qt/html/qmainwindow-h.html
+share/doc/qt/html/qmainwindow-m.png
+share/doc/qt/html/qmainwindow-members.html
+share/doc/qt/html/qmainwindow-w.png
+share/doc/qt/html/qmainwindow.html
+share/doc/qt/html/qmap-h.html
+share/doc/qt/html/qmap-members.html
+share/doc/qt/html/qmap.html
+share/doc/qt/html/qmapconstiterator-members.html
+share/doc/qt/html/qmapconstiterator.html
+share/doc/qt/html/qmapiterator-members.html
+share/doc/qt/html/qmapiterator.html
+share/doc/qt/html/qmenubar-h.html
+share/doc/qt/html/qmenubar-m.png
+share/doc/qt/html/qmenubar-members.html
+share/doc/qt/html/qmenubar-w.png
+share/doc/qt/html/qmenubar.html
+share/doc/qt/html/qmenudata-h.html
+share/doc/qt/html/qmenudata-members.html
+share/doc/qt/html/qmenudata.html
+share/doc/qt/html/qmessagebox-h.html
+share/doc/qt/html/qmessagebox-members.html
+share/doc/qt/html/qmessagebox.html
+share/doc/qt/html/qmetadata-members.html
+share/doc/qt/html/qmetaobject-h.html
+share/doc/qt/html/qmetaobject-members.html
+share/doc/qt/html/qmetaobject.html
+share/doc/qt/html/qmetaproperty-members.html
+share/doc/qt/html/qmetaproperty.html
+share/doc/qt/html/qmime-h.html
+share/doc/qt/html/qmimesource-members.html
+share/doc/qt/html/qmimesource.html
+share/doc/qt/html/qmimesourcefactory-members.html
+share/doc/qt/html/qmimesourcefactory.html
+share/doc/qt/html/qmlined-m.png
+share/doc/qt/html/qmlined-w.png
+share/doc/qt/html/qmngio-h.html
+share/doc/qt/html/qmotifplusstyle-h.html
+share/doc/qt/html/qmotifplusstyle-members.html
+share/doc/qt/html/qmotifplusstyle.html
+share/doc/qt/html/qmotifstyle-h.html
+share/doc/qt/html/qmotifstyle-members.html
+share/doc/qt/html/qmotifstyle.html
+share/doc/qt/html/qmouseevent-members.html
+share/doc/qt/html/qmouseevent.html
+share/doc/qt/html/qmoveevent-members.html
+share/doc/qt/html/qmoveevent.html
+share/doc/qt/html/qmovie-h.html
+share/doc/qt/html/qmovie-members.html
+share/doc/qt/html/qmovie.html
+share/doc/qt/html/qmovie.png
+share/doc/qt/html/qmsgbox-m.png
+share/doc/qt/html/qmsgbox-w.png
+share/doc/qt/html/qmultilineedit-h.html
+share/doc/qt/html/qmultilineedit-members.html
+share/doc/qt/html/qmultilineedit.html
+share/doc/qt/html/qmutex-members.html
+share/doc/qt/html/qmutex.html
+share/doc/qt/html/qnamespace-h.html
+share/doc/qt/html/qnetworkegg.html
+share/doc/qt/html/qnetworkoperation-members.html
+share/doc/qt/html/qnetworkoperation.html
+share/doc/qt/html/qnetworkprotocol-h.html
+share/doc/qt/html/qnetworkprotocol-members.html
+share/doc/qt/html/qnetworkprotocol.html
+share/doc/qt/html/qnp-h.html
+share/doc/qt/html/qnpinstance-members.html
+share/doc/qt/html/qnpinstance.html
+share/doc/qt/html/qnplugin-members.html
+share/doc/qt/html/qnplugin.html
+share/doc/qt/html/qnpstream-members.html
+share/doc/qt/html/qnpstream.html
+share/doc/qt/html/qnpwidget-members.html
+share/doc/qt/html/qnpwidget.html
+share/doc/qt/html/qobject-h.html
+share/doc/qt/html/qobject-members.html
+share/doc/qt/html/qobject.html
+share/doc/qt/html/qpaintdevice-h.html
+share/doc/qt/html/qpaintdevice-members.html
+share/doc/qt/html/qpaintdevice.html
+share/doc/qt/html/qpaintdevicemetrics-h.html
+share/doc/qt/html/qpaintdevicemetrics-members.html
+share/doc/qt/html/qpaintdevicemetrics.html
+share/doc/qt/html/qpainter-h.html
+share/doc/qt/html/qpainter-members.html
+share/doc/qt/html/qpainter.html
+share/doc/qt/html/qpaintevent-members.html
+share/doc/qt/html/qpaintevent.html
+share/doc/qt/html/qpalette-h.html
+share/doc/qt/html/qpalette-members.html
+share/doc/qt/html/qpalette.html
+share/doc/qt/html/qpen-h.html
+share/doc/qt/html/qpen-members.html
+share/doc/qt/html/qpen.html
+share/doc/qt/html/qpicture-h.html
+share/doc/qt/html/qpicture-members.html
+share/doc/qt/html/qpicture.html
+share/doc/qt/html/qpixmap-h.html
+share/doc/qt/html/qpixmap-members.html
+share/doc/qt/html/qpixmap.html
+share/doc/qt/html/qpixmapcache-h.html
+share/doc/qt/html/qpixmapcache-members.html
+share/doc/qt/html/qpixmapcache.html
+share/doc/qt/html/qplatinumstyle-h.html
+share/doc/qt/html/qplatinumstyle-members.html
+share/doc/qt/html/qplatinumstyle.html
+share/doc/qt/html/qpngimagepacker-members.html
+share/doc/qt/html/qpngimagepacker.html
+share/doc/qt/html/qpngio-h.html
+share/doc/qt/html/qpoint-h.html
+share/doc/qt/html/qpoint-members.html
+share/doc/qt/html/qpoint.html
+share/doc/qt/html/qpointarray-h.html
+share/doc/qt/html/qpointarray-members.html
+share/doc/qt/html/qpointarray.html
+share/doc/qt/html/qpopmenu-fancy.png
+share/doc/qt/html/qpopmenu-m.png
+share/doc/qt/html/qpopmenu-w.png
+share/doc/qt/html/qpopupmenu-h.html
+share/doc/qt/html/qpopupmenu-members.html
+share/doc/qt/html/qpopupmenu.html
+share/doc/qt/html/qprintdialog-h.html
+share/doc/qt/html/qprintdialog-members.html
+share/doc/qt/html/qprintdlg-m.png
+share/doc/qt/html/qprintdlg-w.png
+share/doc/qt/html/qprinter-h.html
+share/doc/qt/html/qprinter-members.html
+share/doc/qt/html/qprinter.html
+share/doc/qt/html/qprogbar-m.png
+share/doc/qt/html/qprogbar-w.png
+share/doc/qt/html/qprogdlg-m.png
+share/doc/qt/html/qprogdlg-w.png
+share/doc/qt/html/qprogressbar-h.html
+share/doc/qt/html/qprogressbar-members.html
+share/doc/qt/html/qprogressbar.html
+share/doc/qt/html/qprogressdialog-h.html
+share/doc/qt/html/qprogressdialog-members.html
+share/doc/qt/html/qprogressdialog.html
+share/doc/qt/html/qptrdict-h.html
+share/doc/qt/html/qptrdict-members.html
+share/doc/qt/html/qptrdict.html
+share/doc/qt/html/qptrdictiterator-members.html
+share/doc/qt/html/qptrdictiterator.html
+share/doc/qt/html/qpushbt-m.png
+share/doc/qt/html/qpushbt-w.png
+share/doc/qt/html/qpushbutton-h.html
+share/doc/qt/html/qpushbutton-members.html
+share/doc/qt/html/qpushbutton.html
+share/doc/qt/html/qqueue-h.html
+share/doc/qt/html/qqueue-members.html
+share/doc/qt/html/qqueue.html
+share/doc/qt/html/qradiobt-m.png
+share/doc/qt/html/qradiobt-w.png
+share/doc/qt/html/qradiobutton-h.html
+share/doc/qt/html/qradiobutton-members.html
+share/doc/qt/html/qradiobutton.html
+share/doc/qt/html/qrangecontrol-h.html
+share/doc/qt/html/qrangecontrol-members.html
+share/doc/qt/html/qrangecontrol.html
+share/doc/qt/html/qrect-h.html
+share/doc/qt/html/qrect-members.html
+share/doc/qt/html/qrect.html
+share/doc/qt/html/qregexp-h.html
+share/doc/qt/html/qregexp-members.html
+share/doc/qt/html/qregexp.html
+share/doc/qt/html/qregion-h.html
+share/doc/qt/html/qregion-members.html
+share/doc/qt/html/qregion.html
+share/doc/qt/html/qrenderedfont-members.html
+share/doc/qt/html/qresizeevent-members.html
+share/doc/qt/html/qresizeevent.html
+share/doc/qt/html/qscrbar-m.png
+share/doc/qt/html/qscrbar-w.png
+share/doc/qt/html/qscreen-members.html
+share/doc/qt/html/qscreencursor-members.html
+share/doc/qt/html/qscreencursor.html
+share/doc/qt/html/qscrollbar-h.html
+share/doc/qt/html/qscrollbar-members.html
+share/doc/qt/html/qscrollbar.html
+share/doc/qt/html/qscrollview-cl.png
+share/doc/qt/html/qscrollview-h.html
+share/doc/qt/html/qscrollview-m.png
+share/doc/qt/html/qscrollview-members.html
+share/doc/qt/html/qscrollview-vp.png
+share/doc/qt/html/qscrollview-vp2.png
+share/doc/qt/html/qscrollview-w.png
+share/doc/qt/html/qscrollview.html
+share/doc/qt/html/qsemaphore-members.html
+share/doc/qt/html/qsemaphore.html
+share/doc/qt/html/qsemimodal-h.html
+share/doc/qt/html/qsemimodal-members.html
+share/doc/qt/html/qsemimodal.html
+share/doc/qt/html/qserversocket-h.html
+share/doc/qt/html/qserversocket-members.html
+share/doc/qt/html/qserversocket.html
+share/doc/qt/html/qsessionmanager-h.html
+share/doc/qt/html/qsessionmanager-members.html
+share/doc/qt/html/qsessionmanager.html
+share/doc/qt/html/qsgistyle-h.html
+share/doc/qt/html/qsgistyle-members.html
+share/doc/qt/html/qsgistyle.html
+share/doc/qt/html/qshared-h.html
+share/doc/qt/html/qshared-members.html
+share/doc/qt/html/qshared.html
+share/doc/qt/html/qshowevent-members.html
+share/doc/qt/html/qshowevent.html
+share/doc/qt/html/qsignal-h.html
+share/doc/qt/html/qsignal-members.html
+share/doc/qt/html/qsignal.html
+share/doc/qt/html/qsignalmapper-h.html
+share/doc/qt/html/qsignalmapper-members.html
+share/doc/qt/html/qsignalmapper.html
+share/doc/qt/html/qsimplerichtext-h.html
+share/doc/qt/html/qsimplerichtext-members.html
+share/doc/qt/html/qsimplerichtext.html
+share/doc/qt/html/qsize-h.html
+share/doc/qt/html/qsize-members.html
+share/doc/qt/html/qsize.html
+share/doc/qt/html/qsizegrip-h.html
+share/doc/qt/html/qsizegrip-m.png
+share/doc/qt/html/qsizegrip-members.html
+share/doc/qt/html/qsizegrip-w.png
+share/doc/qt/html/qsizegrip.html
+share/doc/qt/html/qsizepolicy-h.html
+share/doc/qt/html/qsizepolicy-members.html
+share/doc/qt/html/qsizepolicy.html
+share/doc/qt/html/qsjiscodec-h.html
+share/doc/qt/html/qsjiscodec-members.html
+share/doc/qt/html/qsjiscodec.html
+share/doc/qt/html/qslider-h.html
+share/doc/qt/html/qslider-m.png
+share/doc/qt/html/qslider-members.html
+share/doc/qt/html/qslider-w.png
+share/doc/qt/html/qslider.html
+share/doc/qt/html/qsocket-h.html
+share/doc/qt/html/qsocket-members.html
+share/doc/qt/html/qsocket.html
+share/doc/qt/html/qsocketdevice-h.html
+share/doc/qt/html/qsocketdevice-members.html
+share/doc/qt/html/qsocketdevice.html
+share/doc/qt/html/qsocketnotifier-h.html
+share/doc/qt/html/qsocketnotifier-members.html
+share/doc/qt/html/qsocketnotifier.html
+share/doc/qt/html/qsortedlist-h.html
+share/doc/qt/html/qsortedlist-members.html
+share/doc/qt/html/qsortedlist.html
+share/doc/qt/html/qsound-h.html
+share/doc/qt/html/qsound-members.html
+share/doc/qt/html/qsound.html
+share/doc/qt/html/qspaceritem-members.html
+share/doc/qt/html/qspaceritem.html
+share/doc/qt/html/qspinbox-h.html
+share/doc/qt/html/qspinbox-m.png
+share/doc/qt/html/qspinbox-members.html
+share/doc/qt/html/qspinbox-w.png
+share/doc/qt/html/qspinbox.html
+share/doc/qt/html/qspinbox2-m.png
+share/doc/qt/html/qspinbox2-w.png
+share/doc/qt/html/qsplitter-h.html
+share/doc/qt/html/qsplitter-m.png
+share/doc/qt/html/qsplitter-members.html
+share/doc/qt/html/qsplitter-w.png
+share/doc/qt/html/qsplitter.html
+share/doc/qt/html/qstack-h.html
+share/doc/qt/html/qstack-members.html
+share/doc/qt/html/qstack.html
+share/doc/qt/html/qstatusbar-h.html
+share/doc/qt/html/qstatusbar-m.png
+share/doc/qt/html/qstatusbar-members.html
+share/doc/qt/html/qstatusbar-w.png
+share/doc/qt/html/qstatusbar.html
+share/doc/qt/html/qstoreddrag-members.html
+share/doc/qt/html/qstoreddrag.html
+share/doc/qt/html/qstrilist-members.html
+share/doc/qt/html/qstrilist.html
+share/doc/qt/html/qstring-h.html
+share/doc/qt/html/qstring-members.html
+share/doc/qt/html/qstring.html
+share/doc/qt/html/qstringlist-h.html
+share/doc/qt/html/qstringlist-members.html
+share/doc/qt/html/qstringlist.html
+share/doc/qt/html/qstrlist-h.html
+share/doc/qt/html/qstrlist-members.html
+share/doc/qt/html/qstrlist.html
+share/doc/qt/html/qstrlistiterator-members.html
+share/doc/qt/html/qstrlistiterator.html
+share/doc/qt/html/qstyle-h.html
+share/doc/qt/html/qstyle-members.html
+share/doc/qt/html/qstyle.html
+share/doc/qt/html/qstylesheet-h.html
+share/doc/qt/html/qstylesheet-members.html
+share/doc/qt/html/qstylesheet.html
+share/doc/qt/html/qstylesheetitem-members.html
+share/doc/qt/html/qstylesheetitem.html
+share/doc/qt/html/qt-members.html
+share/doc/qt/html/qt.html
+share/doc/qt/html/qtab-members.html
+share/doc/qt/html/qtab.html
+share/doc/qt/html/qtabbar-h.html
+share/doc/qt/html/qtabbar-m.png
+share/doc/qt/html/qtabbar-members.html
+share/doc/qt/html/qtabbar-w.png
+share/doc/qt/html/qtabbar.html
+share/doc/qt/html/qtabdialog-h.html
+share/doc/qt/html/qtabdialog-members.html
+share/doc/qt/html/qtabdialog.html
+share/doc/qt/html/qtabdlg-m.png
+share/doc/qt/html/qtabdlg-w.png
+share/doc/qt/html/qtable-h.html
+share/doc/qt/html/qtable-members.html
+share/doc/qt/html/qtable.html
+share/doc/qt/html/qtable.png
+share/doc/qt/html/qtableitem-members.html
+share/doc/qt/html/qtableitem.html
+share/doc/qt/html/qtableselection-members.html
+share/doc/qt/html/qtableselection.html
+share/doc/qt/html/qtableview-h.html
+share/doc/qt/html/qtableview-members.html
+share/doc/qt/html/qtableview.html
+share/doc/qt/html/qtablevw-m.png
+share/doc/qt/html/qtablevw-w.png
+share/doc/qt/html/qtabwidget-h.html
+share/doc/qt/html/qtabwidget-m.png
+share/doc/qt/html/qtabwidget-members.html
+share/doc/qt/html/qtabwidget-w.png
+share/doc/qt/html/qtabwidget.html
+share/doc/qt/html/qtextbrowser-h.html
+share/doc/qt/html/qtextbrowser-m.png
+share/doc/qt/html/qtextbrowser-members.html
+share/doc/qt/html/qtextbrowser-w.png
+share/doc/qt/html/qtextbrowser.html
+share/doc/qt/html/qtextcodec-h.html
+share/doc/qt/html/qtextcodec-members.html
+share/doc/qt/html/qtextcodec.html
+share/doc/qt/html/qtextdecoder-members.html
+share/doc/qt/html/qtextdecoder.html
+share/doc/qt/html/qtextdrag-members.html
+share/doc/qt/html/qtextdrag.html
+share/doc/qt/html/qtextencoder-members.html
+share/doc/qt/html/qtextencoder.html
+share/doc/qt/html/qtextistream-members.html
+share/doc/qt/html/qtextistream.html
+share/doc/qt/html/qtextostream-members.html
+share/doc/qt/html/qtextostream.html
+share/doc/qt/html/qtextstream-h.html
+share/doc/qt/html/qtextstream-members.html
+share/doc/qt/html/qtextstream.html
+share/doc/qt/html/qtextview-h.html
+share/doc/qt/html/qtextview-members.html
+share/doc/qt/html/qtextview.html
+share/doc/qt/html/qthread-h.html
+share/doc/qt/html/qthread-members.html
+share/doc/qt/html/qthread.html
+share/doc/qt/html/qtimage-qtimage-cpp.html
+share/doc/qt/html/qtime-members.html
+share/doc/qt/html/qtime.html
+share/doc/qt/html/qtimer-h.html
+share/doc/qt/html/qtimer-members.html
+share/doc/qt/html/qtimer.html
+share/doc/qt/html/qtimerevent-members.html
+share/doc/qt/html/qtimerevent.html
+share/doc/qt/html/qtl.html
+share/doc/qt/html/qtlogo.png
+share/doc/qt/html/qtoolbar-h.html
+share/doc/qt/html/qtoolbar-members.html
+share/doc/qt/html/qtoolbar.html
+share/doc/qt/html/qtoolbutton-h.html
+share/doc/qt/html/qtoolbutton-members.html
+share/doc/qt/html/qtoolbutton.html
+share/doc/qt/html/qtooltip-h.html
+share/doc/qt/html/qtooltip-members.html
+share/doc/qt/html/qtooltip.html
+share/doc/qt/html/qtooltipgroup-members.html
+share/doc/qt/html/qtooltipgroup.html
+share/doc/qt/html/qtranslator-h.html
+share/doc/qt/html/qtranslator-members.html
+share/doc/qt/html/qtranslator.html
+share/doc/qt/html/qtranslatormessage-members.html
+share/doc/qt/html/qtranslatormessage.html
+share/doc/qt/html/qtsciicodec-h.html
+share/doc/qt/html/qtsciicodec-members.html
+share/doc/qt/html/qtsciicodec.html
+share/doc/qt/html/quridrag-members.html
+share/doc/qt/html/quridrag.html
+share/doc/qt/html/qurl-h.html
+share/doc/qt/html/qurl-members.html
+share/doc/qt/html/qurl.html
+share/doc/qt/html/qurlinfo-h.html
+share/doc/qt/html/qurlinfo-members.html
+share/doc/qt/html/qurlinfo.html
+share/doc/qt/html/qurloperator-h.html
+share/doc/qt/html/qurloperator-members.html
+share/doc/qt/html/qurloperator.html
+share/doc/qt/html/qvalidator-h.html
+share/doc/qt/html/qvalidator-members.html
+share/doc/qt/html/qvalidator.html
+share/doc/qt/html/qvaluelist-h.html
+share/doc/qt/html/qvaluelist-members.html
+share/doc/qt/html/qvaluelist.html
+share/doc/qt/html/qvaluelistconstiterator-members.html
+share/doc/qt/html/qvaluelistconstiterator.html
+share/doc/qt/html/qvaluelistiterator-members.html
+share/doc/qt/html/qvaluelistiterator.html
+share/doc/qt/html/qvaluestack-h.html
+share/doc/qt/html/qvaluestack-members.html
+share/doc/qt/html/qvaluestack.html
+share/doc/qt/html/qvariant-h.html
+share/doc/qt/html/qvariant-members.html
+share/doc/qt/html/qvariant.html
+share/doc/qt/html/qvbox-h.html
+share/doc/qt/html/qvbox-m.png
+share/doc/qt/html/qvbox-members.html
+share/doc/qt/html/qvbox-w.png
+share/doc/qt/html/qvbox.html
+share/doc/qt/html/qvbox.png
+share/doc/qt/html/qvboxlayout-members.html
+share/doc/qt/html/qvboxlayout.html
+share/doc/qt/html/qvbuttongroup-h.html
+share/doc/qt/html/qvbuttongroup-members.html
+share/doc/qt/html/qvbuttongroup.html
+share/doc/qt/html/qvector-h.html
+share/doc/qt/html/qvector-members.html
+share/doc/qt/html/qvector.html
+share/doc/qt/html/qvfb-qws.html
+share/doc/qt/html/qvgroupbox-h.html
+share/doc/qt/html/qvgroupbox-members.html
+share/doc/qt/html/qvgroupbox.html
+share/doc/qt/html/qwaitcondition-members.html
+share/doc/qt/html/qwaitcondition.html
+share/doc/qt/html/qwerty-main-cpp.html
+share/doc/qt/html/qwhatsthis-h.html
+share/doc/qt/html/qwhatsthis-members.html
+share/doc/qt/html/qwhatsthis.html
+share/doc/qt/html/qwheelevent-members.html
+share/doc/qt/html/qwheelevent.html
+share/doc/qt/html/qwidget-h.html
+share/doc/qt/html/qwidget-members.html
+share/doc/qt/html/qwidget.html
+share/doc/qt/html/qwidgetitem-members.html
+share/doc/qt/html/qwidgetitem.html
+share/doc/qt/html/qwidgetstack-h.html
+share/doc/qt/html/qwidgetstack-members.html
+share/doc/qt/html/qwidgetstack.html
+share/doc/qt/html/qwindowdefs-h.html
+share/doc/qt/html/qwindowsstyle-h.html
+share/doc/qt/html/qwindowsstyle-members.html
+share/doc/qt/html/qwindowsstyle.html
+share/doc/qt/html/qwindowsystem_qws-h.html
+share/doc/qt/html/qwizard-h.html
+share/doc/qt/html/qwizard-members.html
+share/doc/qt/html/qwizard.html
+share/doc/qt/html/qwmatrix-h.html
+share/doc/qt/html/qwmatrix-members.html
+share/doc/qt/html/qwmatrix.html
+share/doc/qt/html/qworkspace-h.html
+share/doc/qt/html/qworkspace-members.html
+share/doc/qt/html/qworkspace.html
+share/doc/qt/html/qwsdecoration-members.html
+share/doc/qt/html/qwsdecoration.html
+share/doc/qt/html/qwsdecoration_qws-h.html
+share/doc/qt/html/qwskeyboardhandler-members.html
+share/doc/qt/html/qwskeyboardhandler.html
+share/doc/qt/html/qwsmouse_qws-h.html
+share/doc/qt/html/qwsmousehandler-members.html
+share/doc/qt/html/qwsmousehandler.html
+share/doc/qt/html/qwsserver-members.html
+share/doc/qt/html/qwsserver.html
+share/doc/qt/html/qxml-h.html
+share/doc/qt/html/qxmlattributes-members.html
+share/doc/qt/html/qxmlattributes.html
+share/doc/qt/html/qxmlcontenthandler-members.html
+share/doc/qt/html/qxmlcontenthandler.html
+share/doc/qt/html/qxmldeclhandler-members.html
+share/doc/qt/html/qxmldeclhandler.html
+share/doc/qt/html/qxmldefaulthandler-members.html
+share/doc/qt/html/qxmldefaulthandler.html
+share/doc/qt/html/qxmldtdhandler-members.html
+share/doc/qt/html/qxmldtdhandler.html
+share/doc/qt/html/qxmlentityresolver-members.html
+share/doc/qt/html/qxmlentityresolver.html
+share/doc/qt/html/qxmlerrorhandler-members.html
+share/doc/qt/html/qxmlerrorhandler.html
+share/doc/qt/html/qxmlinputsource-members.html
+share/doc/qt/html/qxmlinputsource.html
+share/doc/qt/html/qxmllexicalhandler-members.html
+share/doc/qt/html/qxmllexicalhandler.html
+share/doc/qt/html/qxmllocator-members.html
+share/doc/qt/html/qxmllocator.html
+share/doc/qt/html/qxmlnamespacesupport-members.html
+share/doc/qt/html/qxmlnamespacesupport.html
+share/doc/qt/html/qxmlparseexception-members.html
+share/doc/qt/html/qxmlparseexception.html
+share/doc/qt/html/qxmlreader-members.html
+share/doc/qt/html/qxmlreader.html
+share/doc/qt/html/qxmlsimplereader-members.html
+share/doc/qt/html/qxmlsimplereader.html
+share/doc/qt/html/qxt-h.html
+share/doc/qt/html/qxtapplication-members.html
+share/doc/qt/html/qxtapplication.html
+share/doc/qt/html/qxtwidget-members.html
+share/doc/qt/html/qxtwidget.html
+share/doc/qt/html/rangecontrols-main-cpp.html
+share/doc/qt/html/removed20.html
+share/doc/qt/html/richtext-main-cpp.html
+share/doc/qt/html/rintersect.png
+share/doc/qt/html/rot13-rot13-cpp.html
+share/doc/qt/html/rsubtract.png
+share/doc/qt/html/runion.png
+share/doc/qt/html/running-qws.html
+share/doc/qt/html/rxor.png
+share/doc/qt/html/scribble-main-cpp.html
+share/doc/qt/html/scrollview-scrollview-cpp.html
+share/doc/qt/html/session.html
+share/doc/qt/html/session.png
+share/doc/qt/html/shared.html
+share/doc/qt/html/shclass.html
+share/doc/qt/html/showimg-main-cpp.html
+share/doc/qt/html/signalsandslots.html
+share/doc/qt/html/simple-application.html
+share/doc/qt/html/smooth.png
+share/doc/qt/html/splitter-splitter-cpp.html
+share/doc/qt/html/splitter-views-m.png
+share/doc/qt/html/splitter-views-w.png
+share/doc/qt/html/t1.html
+share/doc/qt/html/t1.png
+share/doc/qt/html/t10-cannon-cpp.html
+share/doc/qt/html/t10-cannon-h.html
+share/doc/qt/html/t10-lcdrange-cpp.html
+share/doc/qt/html/t10-lcdrange-h.html
+share/doc/qt/html/t10-main-cpp.html
+share/doc/qt/html/t10-makefile.html
+share/doc/qt/html/t10.html
+share/doc/qt/html/t10.png
+share/doc/qt/html/t11-cannon-cpp.html
+share/doc/qt/html/t11-cannon-h.html
+share/doc/qt/html/t11-lcdrange-cpp.html
+share/doc/qt/html/t11-lcdrange-h.html
+share/doc/qt/html/t11-main-cpp.html
+share/doc/qt/html/t11-makefile.html
+share/doc/qt/html/t11.html
+share/doc/qt/html/t11.png
+share/doc/qt/html/t12-cannon-cpp.html
+share/doc/qt/html/t12-cannon-h.html
+share/doc/qt/html/t12-lcdrange-cpp.html
+share/doc/qt/html/t12-lcdrange-h.html
+share/doc/qt/html/t12-main-cpp.html
+share/doc/qt/html/t12-makefile.html
+share/doc/qt/html/t12.html
+share/doc/qt/html/t12.png
+share/doc/qt/html/t13-cannon-cpp.html
+share/doc/qt/html/t13-cannon-h.html
+share/doc/qt/html/t13-gamebrd-cpp.html
+share/doc/qt/html/t13-gamebrd-h.html
+share/doc/qt/html/t13-lcdrange-cpp.html
+share/doc/qt/html/t13-lcdrange-h.html
+share/doc/qt/html/t13-main-cpp.html
+share/doc/qt/html/t13-makefile.html
+share/doc/qt/html/t13.html
+share/doc/qt/html/t13.png
+share/doc/qt/html/t14-cannon-cpp.html
+share/doc/qt/html/t14-cannon-h.html
+share/doc/qt/html/t14-gamebrd-cpp.html
+share/doc/qt/html/t14-gamebrd-h.html
+share/doc/qt/html/t14-lcdrange-cpp.html
+share/doc/qt/html/t14-lcdrange-h.html
+share/doc/qt/html/t14-main-cpp.html
+share/doc/qt/html/t14-makefile.html
+share/doc/qt/html/t14.html
+share/doc/qt/html/t14.png
+share/doc/qt/html/t2.html
+share/doc/qt/html/t2.png
+share/doc/qt/html/t3.html
+share/doc/qt/html/t3.png
+share/doc/qt/html/t4.html
+share/doc/qt/html/t4.png
+share/doc/qt/html/t5.html
+share/doc/qt/html/t5.png
+share/doc/qt/html/t6.html
+share/doc/qt/html/t6.png
+share/doc/qt/html/t7-lcdrange-cpp.html
+share/doc/qt/html/t7-lcdrange-h.html
+share/doc/qt/html/t7-main-cpp.html
+share/doc/qt/html/t7-makefile.html
+share/doc/qt/html/t7.html
+share/doc/qt/html/t7.png
+share/doc/qt/html/t8-cannon-cpp.html
+share/doc/qt/html/t8-cannon-h.html
+share/doc/qt/html/t8-lcdrange-cpp.html
+share/doc/qt/html/t8-lcdrange-h.html
+share/doc/qt/html/t8-main-cpp.html
+share/doc/qt/html/t8-makefile.html
+share/doc/qt/html/t8.html
+share/doc/qt/html/t8.png
+share/doc/qt/html/t9-cannon-cpp.html
+share/doc/qt/html/t9-cannon-h.html
+share/doc/qt/html/t9-lcdrange-cpp.html
+share/doc/qt/html/t9-lcdrange-h.html
+share/doc/qt/html/t9-main-cpp.html
+share/doc/qt/html/t9-makefile.html
+share/doc/qt/html/t9.html
+share/doc/qt/html/t9.png
+share/doc/qt/html/t9_1.png
+share/doc/qt/html/t9_2.png
+share/doc/qt/html/tabdialog-main-cpp.html
+share/doc/qt/html/table.html
+share/doc/qt/html/test.png
+share/doc/qt/html/tetrix-tetrix-cpp.html
+share/doc/qt/html/themes-main-cpp.html
+share/doc/qt/html/threads.html
+share/doc/qt/html/tictac-main-cpp.html
+share/doc/qt/html/time.html
+share/doc/qt/html/timers.html
+share/doc/qt/html/titleindex
+share/doc/qt/html/tools.html
+share/doc/qt/html/tooltip-main-cpp.html
+share/doc/qt/html/topicals.html
+share/doc/qt/html/trivial-trivial-cpp.html
+share/doc/qt/html/troll.html
+share/doc/qt/html/tutorial.html
+share/doc/qt/html/tutorial.png
+share/doc/qt/html/unicode.html
+share/doc/qt/html/unsmooth.png
+share/doc/qt/html/validator-main-cpp.html
+share/doc/qt/html/walkthroughs.html
+share/doc/qt/html/whatsthis
+share/doc/qt/html/whatsthis.png
+share/doc/qt/html/winsystem.html
+share/doc/qt/html/wizard-main-cpp.html
+share/doc/qt/html/workspace.html
+share/doc/qt/html/xform-xform-cpp.html
+share/doc/qt/html/xml-dom.html
+share/doc/qt/html/xml-sax-walkthrough.html
+share/doc/qt/html/xml-sax.html
+share/doc/qt/html/xml-tagreader-tagreader-cpp.html
+share/doc/qt/html/xml-tagreader-with-features-tagreader-cpp.html
+share/doc/qt/html/xml.html
+share/doc/qt/html/xt.html
+share/doc/qt/html/y2k.html
+@dirrm share/doc/qt/html
+@dirrm share/doc/qt
+@dirrm include/qt
Index: files/patch-aa
===================================================================
RCS file: /home/ncvs/ports/x11-toolkits/qt23/files/patch-aa,v
retrieving revision 1.13
diff -u -r1.13 patch-aa
--- files/patch-aa	2001/03/14 01:29:16	1.13
+++ files/patch-aa	2001/03/17 15:20:18
@@ -5,28 +5,10 @@
  # Compiling with support libraries
  SYSCONF_CXXFLAGS_X11	= -I/usr/X11R6/include
 -SYSCONF_CXXFLAGS_QT	= -I$(QTDIR)/include
-+SYSCONF_CXXFLAGS_QT= -I$(QTDIR)/include $(SYSCONF_CXXFLAGS_THREAD)
++SYSCONF_CXXFLAGS_QT	= -I$(QTDIR)/include $(SYSCONF_CXXFLAGS_THREAD)
  SYSCONF_CXXFLAGS_OPENGL	= -I/usr/X11R6/include
  
  # Compiling YACC output
-@@ -23,7 +23,7 @@
- SYSCONF_LIBS_X11	= -lXext -lX11 -lm
- # Qt, Qt+OpenGL
- SYSCONF_LFLAGS_QT	= -L$(QTDIR)/lib
--SYSCONF_LIBS_QT		= -lqt$(QT_THREAD_SUFFIX)
-+SYSCONF_LIBS_QT		= -lqt2$(QT_THREAD_SUFFIX) $(SYSCONF_LFLAGS_THREAD)
- SYSCONF_LIBS_QT_OPENGL	= 
- # OpenGL
- SYSCONF_LFLAGS_OPENGL	= -L/usr/X11R6/lib
-@@ -46,7 +46,7 @@
- SYSCONF_LIBS_THREAD	= 
- 
- # Meta-object compiler
--SYSCONF_MOC		= $(QTDIR)/bin/moc
-+SYSCONF_MOC		= $(QTDIR)/bin/moc2
- 
- # UI compiler
- SYSCONF_UIC		= $(QTDIR)/bin/uic
 @@ -57,16 +57,14 @@
  #   - Usually needs to incorporate $(VER_MAJ), $(VER_MIN) and $(VER_PATCH)
  #
Index: files/patch-af
===================================================================
RCS file: /home/ncvs/ports/x11-toolkits/qt23/files/patch-af,v
retrieving revision 1.3
diff -u -r1.3 patch-af
--- files/patch-af	2001/03/14 01:29:17	1.3
+++ files/patch-af	2001/03/17 15:19:51
@@ -1,23 +1,5 @@
 --- configs/freebsd-g++-static.orig	Wed Oct  4 12:55:09 2000
 +++ configs/freebsd-g++-static	Sat Nov 18 20:02:46 2000
-@@ -23,7 +23,7 @@
- SYSCONF_LIBS_X11	= -lXext -lX11 -lm
- # Qt, Qt+OpenGL
- SYSCONF_LFLAGS_QT	= -L$(QTDIR)/lib
--SYSCONF_LIBS_QT		= -lqt$(QT_THREAD_SUFFIX)
-+SYSCONF_LIBS_QT		= -lqt2$(QT_THREAD_SUFFIX)
- SYSCONF_LIBS_QT_OPENGL	= 
- # OpenGL
- SYSCONF_LFLAGS_OPENGL	= -L/usr/X11R6/lib
-@@ -46,7 +46,7 @@
- SYSCONF_LIBS_THREAD	= 
- 
- # Meta-object compiler
--SYSCONF_MOC		= $(QTDIR)/bin/moc
-+SYSCONF_MOC		= $(QTDIR)/bin/moc2
- 
- # UI compiler
- SYSCONF_UIC		= $(QTDIR)/bin/uic
 @@ -77,8 +77,8 @@
  SYSCONF_LINK_LIB_STATIC	= rm -f $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) ; \
  				 $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC) 

--=-=-=--

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?xzpd7bgcqg1.fsf>