update to qt 3.1.1
uic.1 -> uic3.1
This commit is contained in:
parent
23601bee00
commit
efabf866f5
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.20 2002/12/18 05:19:45 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.21 2002/12/29 16:13:28 espie Exp $
|
||||
# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $
|
||||
|
||||
COMMENT= C++ X11 GUI toolkit
|
||||
@ -7,7 +7,7 @@ COMMENT-html= off-line html documentation for qt3
|
||||
COMMENT-postgresql= PostgresSQL plugin for qt3
|
||||
COMMENT-mysql= MySQL plugin for qt3
|
||||
|
||||
VERSION= 1.0
|
||||
VERSION= 1.1
|
||||
DISTNAME= qt-x11-free-3.${VERSION}
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= ftp://ftp.troll.no/qt/source/
|
||||
@ -152,8 +152,8 @@ post-patch:
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/lib/qt3
|
||||
${INSTALL_DATA} ${WRKBUILD}/lib/libqt-mt.so.3.10 ${PREFIX}/lib/qt3
|
||||
ln -sf qt3/libqt-mt.so.3.10 ${PREFIX}/lib
|
||||
${INSTALL_DATA} ${WRKBUILD}/lib/libqt-mt.so.3.11 ${PREFIX}/lib/qt3
|
||||
ln -sf qt3/libqt-mt.so.3.11 ${PREFIX}/lib
|
||||
.else
|
||||
post-configure:
|
||||
@cd ${WRKSRC} && cp -R examples examples-src
|
||||
@ -165,7 +165,7 @@ post-configure:
|
||||
@find ${WRKSRC}/tutorial-src -name '.moc' |xargs rm -r
|
||||
@find ${WRKSRC}/tutorial-src -name '.obj' |xargs rm -r
|
||||
|
||||
LIBRARIES=qt.so.3.10 editor.so.1.0 qui.so.1.0
|
||||
LIBRARIES=qt.so.3.11 editor.so.1.0 qui.so.1.0
|
||||
PROGRAMS3=designer findtr moc qt20fix qtrename140 uic
|
||||
PROGRAMS=assistant linguist lrelease lupdate qm2ts qmake qtconfig
|
||||
|
||||
@ -219,7 +219,7 @@ do-install:
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/lrelease.1 ${QT_MANDIR}/man1
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/lupdate.1 ${QT_MANDIR}/man1
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/moc.1 ${QT_MANDIR}/man1/moc3.1
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/uic.1 ${QT_MANDIR}/man1
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/uic.1 ${QT_MANDIR}/man1/uic3.1
|
||||
@for i in ${WRKSRC}/doc/man/man3/*; do \
|
||||
j=$${i%qt}; \
|
||||
sed -e 's,\.3qt,\.3,g' <$$i >$$j && \
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (qt-x11-free-3.1.0.tar.gz) = e8162030710abdc9b5e7e6ea9ee06b4f
|
||||
RMD160 (qt-x11-free-3.1.0.tar.gz) = fac0bda8cb8828548e875193e07cc7fbe6bd7c3b
|
||||
SHA1 (qt-x11-free-3.1.0.tar.gz) = dd04207ca68a3826f79f8337f06438edd1370ecf
|
||||
MD5 (qt-x11-free-3.1.1.tar.gz) = f7b008a5b27b834cb31f0abd91452760
|
||||
RMD160 (qt-x11-free-3.1.1.tar.gz) = ef689b37092993e435ca94b83c1b6171a3d767fa
|
||||
SHA1 (qt-x11-free-3.1.1.tar.gz) = 0abfa0528080c97682954af523b16b19ab901a44
|
||||
|
@ -1,6 +1,6 @@
|
||||
$OpenBSD: patch-mkspecs_openbsd-g++_qmake_conf,v 1.9 2002/12/02 15:32:42 espie Exp $
|
||||
$OpenBSD: patch-mkspecs_openbsd-g++_qmake_conf,v 1.10 2002/12/29 16:13:28 espie Exp $
|
||||
--- mkspecs/openbsd-g++/qmake.conf.orig Thu Nov 7 14:08:00 2002
|
||||
+++ mkspecs/openbsd-g++/qmake.conf Mon Dec 2 15:53:12 2002
|
||||
+++ mkspecs/openbsd-g++/qmake.conf Mon Dec 2 17:27:06 2002
|
||||
@@ -8,6 +8,7 @@ MAKEFILE_GENERATOR = UNIX
|
||||
TEMPLATE = app
|
||||
CONFIG += qt warn_on release
|
||||
|
@ -1,44 +0,0 @@
|
||||
$OpenBSD: patch-src_kernel_qprinter_unix_cpp,v 1.1 2002/11/23 20:32:21 espie Exp $
|
||||
--- src/kernel/qprinter_unix.cpp.orig Sat Nov 23 21:25:15 2002
|
||||
+++ src/kernel/qprinter_unix.cpp Sat Nov 23 21:25:52 2002
|
||||
@@ -349,9 +349,9 @@ bool QPrinter::cmd( int c, QPainter *pai
|
||||
// try to replace this process with "true" - this prevents
|
||||
// global destructors from being called (that could possibly
|
||||
// do wrong things to the parent process)
|
||||
- (void)execlp("true", "true", 0);
|
||||
- (void)execl("/bin/true", "true", 0);
|
||||
- (void)execl("/usr/bin/true", "true", 0);
|
||||
+ (void)execlp("true", "true", (void*)0);
|
||||
+ (void)execl("/bin/true", "true", (void*)0);
|
||||
+ (void)execl("/usr/bin/true", "true", (void*)0);
|
||||
::exit( 0 );
|
||||
}
|
||||
dup2( fds[0], 0 );
|
||||
@@ -364,7 +364,7 @@ bool QPrinter::cmd( int c, QPainter *pai
|
||||
else
|
||||
pr.prepend( QString::fromLatin1( "-P" ) );
|
||||
(void)execlp( print_prog.ascii(), print_prog.ascii(),
|
||||
- pr.ascii(), 0 );
|
||||
+ pr.ascii(), (void*)0 );
|
||||
} else {
|
||||
// if no print program has been specified, be smart
|
||||
// about the option string too.
|
||||
@@ -382,12 +382,12 @@ bool QPrinter::cmd( int c, QPainter *pai
|
||||
QString::fromLatin1( "-d" ) );
|
||||
lparg = lphack.ascii();
|
||||
}
|
||||
- (void)execlp( "lp", "lp", lparg, 0 );
|
||||
- (void)execlp( "lpr", "lpr", lprarg, 0 );
|
||||
- (void)execl( "/bin/lp", "lp", lparg, 0 );
|
||||
- (void)execl( "/bin/lpr", "lpr", lprarg, 0 );
|
||||
- (void)execl( "/usr/bin/lp", "lp", lparg, 0 );
|
||||
- (void)execl( "/usr/bin/lpr", "lpr", lprarg, 0 );
|
||||
+ (void)execlp( "lp", "lp", lparg, (void*)0 );
|
||||
+ (void)execlp( "lpr", "lpr", lprarg, (void*)0 );
|
||||
+ (void)execl( "/bin/lp", "lp", lparg, (void*)0 );
|
||||
+ (void)execl( "/bin/lpr", "lpr", lprarg, (void*)0 );
|
||||
+ (void)execl( "/usr/bin/lp", "lp", lparg, (void*)0 );
|
||||
+ (void)execl( "/usr/bin/lpr", "lpr", lprarg, (void*)0 );
|
||||
}
|
||||
// if we couldn't exec anything, close the fd,
|
||||
// wait for a second so the parent process (the
|
@ -1,11 +0,0 @@
|
||||
$OpenBSD: patch-src_kernel_qwidget_x11_cpp,v 1.1 2002/12/06 00:46:43 brad Exp $
|
||||
--- src/kernel/qwidget_x11.cpp.orig Thu Dec 5 19:39:09 2002
|
||||
+++ src/kernel/qwidget_x11.cpp Thu Dec 5 19:39:34 2002
|
||||
@@ -1561,7 +1561,6 @@ void QWidget::showMinimized()
|
||||
else {
|
||||
topData()->showMode = 1;
|
||||
show();
|
||||
- hideChildren( FALSE );
|
||||
}
|
||||
} else {
|
||||
show();
|
@ -1,6 +1,6 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.5 2002/11/23 18:52:22 espie Exp $
|
||||
lib/libqt.so.3.10
|
||||
lib/libqui.so.${VERSION}
|
||||
lib/qt3/libqt.so.3.10
|
||||
lib/qt3/libqui.so.${VERSION}
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.6 2002/12/29 16:13:28 espie Exp $
|
||||
lib/libqt.so.3.11
|
||||
lib/libqui.so.1.0
|
||||
lib/qt3/libqt.so.3.11
|
||||
lib/qt3/libqui.so.1.0
|
||||
DYNLIBDIR(%D/lib)
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.9 2002/11/23 22:00:20 espie Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.10 2002/12/29 16:13:28 espie Exp $
|
||||
bin/assistant
|
||||
bin/designer3
|
||||
bin/findtr3
|
||||
@ -350,14 +350,12 @@ include/X11/qt3/qtextview.h
|
||||
include/X11/qt3/qthread.h
|
||||
include/X11/qt3/qtimer.h
|
||||
include/X11/qt3/qtl.h
|
||||
include/X11/qt3/qtmultilineedit.h
|
||||
include/X11/qt3/qtoolbar.h
|
||||
include/X11/qt3/qtoolbutton.h
|
||||
include/X11/qt3/qtooltip.h
|
||||
include/X11/qt3/qtranslator.h
|
||||
include/X11/qt3/qtsciicodec.h
|
||||
include/X11/qt3/qtstream.h
|
||||
include/X11/qt3/qttableview.h
|
||||
include/X11/qt3/qurl.h
|
||||
include/X11/qt3/qurlinfo.h
|
||||
include/X11/qt3/qurloperator.h
|
||||
@ -402,7 +400,7 @@ lib/qt3/libeditor.a
|
||||
lib/qt3/man/man1/lrelease.1
|
||||
lib/qt3/man/man1/lupdate.1
|
||||
lib/qt3/man/man1/moc3.1
|
||||
lib/qt3/man/man1/uic.1
|
||||
lib/qt3/man/man1/uic3.1
|
||||
lib/qt3/man/man3/QAccel.3
|
||||
lib/qt3/man/man3/QAccessible.3
|
||||
lib/qt3/man/man3/QAccessibleInterface.3
|
||||
@ -598,7 +596,6 @@ lib/qt3/man/man3/QListView.3
|
||||
lib/qt3/man/man3/QListViewItem.3
|
||||
lib/qt3/man/man3/QListViewItemIterator.3
|
||||
lib/qt3/man/man3/QLocalFs.3
|
||||
lib/qt3/man/man3/QLock.3
|
||||
lib/qt3/man/man3/QMacStyle.3
|
||||
lib/qt3/man/man3/QMainWindow.3
|
||||
lib/qt3/man/man3/QMap.3
|
||||
@ -993,7 +990,6 @@ lib/qt3/man/man3/qlistview.3
|
||||
lib/qt3/man/man3/qlistviewitem.3
|
||||
lib/qt3/man/man3/qlistviewitemiterator.3
|
||||
lib/qt3/man/man3/qlocalfs.3
|
||||
lib/qt3/man/man3/qlock.3
|
||||
lib/qt3/man/man3/qmacstyle.3
|
||||
lib/qt3/man/man3/qmainwindow.3
|
||||
lib/qt3/man/man3/qmap.3
|
||||
@ -1315,10 +1311,7 @@ share/doc/qt3/LICENSE.GPL
|
||||
share/doc/qt3/README
|
||||
share/doc/qt3/README.QT
|
||||
share/doc/qt3/changes-3.${VERSION}
|
||||
share/doc/qt3/changes-3.${VERSION}-b1
|
||||
share/doc/qt3/changes-3.${VERSION}-b2
|
||||
%%SHARED%%
|
||||
@unexec rmdir 2>/dev/null %D/share/doc/qt3 || true
|
||||
@exec mkdir -p %D/lib/qt3/plugins/styles
|
||||
@exec mkdir -p %D/lib/qt3/plugins/sqldrivers
|
||||
@dirrm lib/qt3/plugins/styles
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST-html,v 1.6 2002/11/23 18:52:23 espie Exp $
|
||||
@comment $OpenBSD: PLIST-html,v 1.7 2002/12/29 16:13:28 espie Exp $
|
||||
share/doc/qt3/html/aboutqt.html
|
||||
share/doc/qt3/html/abstract-connections.png
|
||||
share/doc/qt3/html/abstractwidgets.html
|
||||
@ -29,12 +29,10 @@ share/doc/qt3/html/book-dialog.png
|
||||
share/doc/qt3/html/book-main.png
|
||||
share/doc/qt3/html/brush-styles.png
|
||||
share/doc/qt3/html/bughowto.html
|
||||
share/doc/qt3/html/buttongroup-m.png
|
||||
share/doc/qt3/html/buttongroup-w.png
|
||||
share/doc/qt3/html/buttongroups-example.html
|
||||
share/doc/qt3/html/buttons.png
|
||||
share/doc/qt3/html/buyhowto.html
|
||||
share/doc/qt3/html/callbacks.png
|
||||
share/doc/qt3/html/canvas-chart-example.html
|
||||
share/doc/qt3/html/canvas-example.html
|
||||
share/doc/qt3/html/canvas.html
|
||||
@ -84,6 +82,7 @@ share/doc/qt3/html/datetimewidgets.png
|
||||
share/doc/qt3/html/dclock-example.html
|
||||
share/doc/qt3/html/debug.html
|
||||
share/doc/qt3/html/demo-example.html
|
||||
share/doc/qt3/html/dependencies.png
|
||||
share/doc/qt3/html/designer-manual-1.html
|
||||
share/doc/qt3/html/designer-manual-10.html
|
||||
share/doc/qt3/html/designer-manual-11.html
|
||||
@ -101,13 +100,11 @@ share/doc/qt3/html/designer-manual-7.html
|
||||
share/doc/qt3/html/designer-manual-8.html
|
||||
share/doc/qt3/html/designer-manual-9.html
|
||||
share/doc/qt3/html/designer-manual.html
|
||||
share/doc/qt3/html/designer.png
|
||||
share/doc/qt3/html/designer.xml
|
||||
share/doc/qt3/html/designer1.jpg
|
||||
share/doc/qt3/html/designer2.jpg
|
||||
share/doc/qt3/html/designer3.jpg
|
||||
share/doc/qt3/html/desktop-example.html
|
||||
share/doc/qt3/html/despreface.png
|
||||
share/doc/qt3/html/dialog1addwidg.png
|
||||
share/doc/qt3/html/dialog1layout1.png
|
||||
share/doc/qt3/html/dialog1layout2.png
|
||||
@ -128,7 +125,6 @@ share/doc/qt3/html/dirview-example.html
|
||||
share/doc/qt3/html/display.png
|
||||
share/doc/qt3/html/distributingqt.html
|
||||
share/doc/qt3/html/dnd.html
|
||||
share/doc/qt3/html/doc.png
|
||||
share/doc/qt3/html/doneandnext.png
|
||||
share/doc/qt3/html/dragaction.png
|
||||
share/doc/qt3/html/draganddrop.html
|
||||
@ -169,7 +165,6 @@ share/doc/qt3/html/events.html
|
||||
share/doc/qt3/html/eventsandfilters.html
|
||||
share/doc/qt3/html/examples.html
|
||||
share/doc/qt3/html/extension-dialog-example.html
|
||||
share/doc/qt3/html/face.jpg
|
||||
share/doc/qt3/html/filechooser.png
|
||||
share/doc/qt3/html/fileiconview-example.html
|
||||
share/doc/qt3/html/fileopen.png
|
||||
@ -189,7 +184,6 @@ share/doc/qt3/html/geometry.png
|
||||
share/doc/qt3/html/gpl.html
|
||||
share/doc/qt3/html/graphics.html
|
||||
share/doc/qt3/html/gridlayout.png
|
||||
share/doc/qt3/html/groupbox-m.png
|
||||
share/doc/qt3/html/groupbox-w.png
|
||||
share/doc/qt3/html/groups.html
|
||||
share/doc/qt3/html/guibooks.html
|
||||
@ -245,7 +239,6 @@ share/doc/qt3/html/mac-differences.html
|
||||
share/doc/qt3/html/mail-example.html
|
||||
share/doc/qt3/html/mailinglists.html
|
||||
share/doc/qt3/html/mainclasses.html
|
||||
share/doc/qt3/html/mainwindow-m.png
|
||||
share/doc/qt3/html/mainwindow-w.png
|
||||
share/doc/qt3/html/makeqpf.html
|
||||
share/doc/qt3/html/mdi-example.html
|
||||
@ -298,7 +291,6 @@ share/doc/qt3/html/picture-example.html
|
||||
share/doc/qt3/html/pictures.html
|
||||
share/doc/qt3/html/plugins-howto.html
|
||||
share/doc/qt3/html/plugins.html
|
||||
share/doc/qt3/html/pnglogo.png
|
||||
share/doc/qt3/html/popup-example.html
|
||||
share/doc/qt3/html/porting.html
|
||||
share/doc/qt3/html/porting2.html
|
||||
@ -434,9 +426,7 @@ share/doc/qt3/html/qchar.html
|
||||
share/doc/qt3/html/qcharref-members.html
|
||||
share/doc/qt3/html/qcharref.html
|
||||
share/doc/qt3/html/qcheckbox-h.html
|
||||
share/doc/qt3/html/qcheckbox-m.png
|
||||
share/doc/qt3/html/qcheckbox-members.html
|
||||
share/doc/qt3/html/qcheckbox-w.png
|
||||
share/doc/qt3/html/qcheckbox.html
|
||||
share/doc/qt3/html/qchecklistitem-members.html
|
||||
share/doc/qt3/html/qchecklistitem.html
|
||||
@ -458,7 +448,6 @@ share/doc/qt3/html/qcolor.html
|
||||
share/doc/qt3/html/qcolordialog-h.html
|
||||
share/doc/qt3/html/qcolordialog-members.html
|
||||
share/doc/qt3/html/qcolordialog.html
|
||||
share/doc/qt3/html/qcolordlg-m.png
|
||||
share/doc/qt3/html/qcolordlg-w.png
|
||||
share/doc/qt3/html/qcolordrag-members.html
|
||||
share/doc/qt3/html/qcolordrag.html
|
||||
@ -467,9 +456,7 @@ share/doc/qt3/html/qcolorgroup.html
|
||||
share/doc/qt3/html/qcombo1-m.png
|
||||
share/doc/qt3/html/qcombo1-w.png
|
||||
share/doc/qt3/html/qcombo2-m.png
|
||||
share/doc/qt3/html/qcombo2-w.png
|
||||
share/doc/qt3/html/qcombo3-m.png
|
||||
share/doc/qt3/html/qcombo3-w.png
|
||||
share/doc/qt3/html/qcombobox-h.html
|
||||
share/doc/qt3/html/qcombobox-members.html
|
||||
share/doc/qt3/html/qcombobox.html
|
||||
@ -753,7 +740,6 @@ share/doc/qt3/html/qfontdatabase.html
|
||||
share/doc/qt3/html/qfontdialog-h.html
|
||||
share/doc/qt3/html/qfontdialog-members.html
|
||||
share/doc/qt3/html/qfontdialog.html
|
||||
share/doc/qt3/html/qfontdlg-m.png
|
||||
share/doc/qt3/html/qfontdlg-w.png
|
||||
share/doc/qt3/html/qfontinfo-h.html
|
||||
share/doc/qt3/html/qfontinfo-members.html
|
||||
@ -802,9 +788,7 @@ share/doc/qt3/html/qglwidget.html
|
||||
share/doc/qt3/html/qgrid-h.html
|
||||
share/doc/qt3/html/qgrid-m.png
|
||||
share/doc/qt3/html/qgrid-members.html
|
||||
share/doc/qt3/html/qgrid-w.png
|
||||
share/doc/qt3/html/qgrid.html
|
||||
share/doc/qt3/html/qgrid.png
|
||||
share/doc/qt3/html/qgridlayout-members.html
|
||||
share/doc/qt3/html/qgridlayout.html
|
||||
share/doc/qt3/html/qgridview-h.html
|
||||
@ -814,7 +798,6 @@ share/doc/qt3/html/qgroupbox-h.html
|
||||
share/doc/qt3/html/qgroupbox-members.html
|
||||
share/doc/qt3/html/qgroupbox.html
|
||||
share/doc/qt3/html/qgroupboxes.png
|
||||
share/doc/qt3/html/qgrpbox-m.png
|
||||
share/doc/qt3/html/qgrpbox-w.png
|
||||
share/doc/qt3/html/qguardedptr-h.html
|
||||
share/doc/qt3/html/qguardedptr-members.html
|
||||
@ -822,9 +805,7 @@ share/doc/qt3/html/qguardedptr.html
|
||||
share/doc/qt3/html/qhbox-h.html
|
||||
share/doc/qt3/html/qhbox-m.png
|
||||
share/doc/qt3/html/qhbox-members.html
|
||||
share/doc/qt3/html/qhbox-w.png
|
||||
share/doc/qt3/html/qhbox.html
|
||||
share/doc/qt3/html/qhbox.png
|
||||
share/doc/qt3/html/qhboxlayout-members.html
|
||||
share/doc/qt3/html/qhboxlayout.html
|
||||
share/doc/qt3/html/qhboxlayout.png
|
||||
@ -977,8 +958,6 @@ share/doc/qt3/html/qlistviewitems.png
|
||||
share/doc/qt3/html/qlocalfs-h.html
|
||||
share/doc/qt3/html/qlocalfs-members.html
|
||||
share/doc/qt3/html/qlocalfs.html
|
||||
share/doc/qt3/html/qlock-members.html
|
||||
share/doc/qt3/html/qlock.html
|
||||
share/doc/qt3/html/qmacstyle-members.html
|
||||
share/doc/qt3/html/qmacstyle.html
|
||||
share/doc/qt3/html/qmacstyle_mac-h.html
|
||||
@ -1138,7 +1117,6 @@ share/doc/qt3/html/qpopupmenu-h.html
|
||||
share/doc/qt3/html/qpopupmenu-members.html
|
||||
share/doc/qt3/html/qpopupmenu.html
|
||||
share/doc/qt3/html/qprintdlg-m.png
|
||||
share/doc/qt3/html/qprintdlg-w.png
|
||||
share/doc/qt3/html/qprinter-h.html
|
||||
share/doc/qt3/html/qprinter-members.html
|
||||
share/doc/qt3/html/qprinter.html
|
||||
@ -1206,13 +1184,6 @@ share/doc/qt3/html/qregion.html
|
||||
share/doc/qt3/html/qresizeevent-members.html
|
||||
share/doc/qt3/html/qresizeevent.html
|
||||
share/doc/qt3/html/qrtlcodec-h.html
|
||||
share/doc/qt3/html/qsaddlab.png
|
||||
share/doc/qt3/html/qsaddline.png
|
||||
share/doc/qt3/html/qsaddpush.png
|
||||
share/doc/qt3/html/qsaddspace.png
|
||||
share/doc/qt3/html/qsconnect1.png
|
||||
share/doc/qt3/html/qsconnect2.png
|
||||
share/doc/qt3/html/qsconnect3.png
|
||||
share/doc/qt3/html/qscrbar-m.png
|
||||
share/doc/qt3/html/qscrbar-w.png
|
||||
share/doc/qt3/html/qscreen-members.html
|
||||
@ -1228,8 +1199,6 @@ share/doc/qt3/html/qscrollview-vp.png
|
||||
share/doc/qt3/html/qscrollview-vp2.png
|
||||
share/doc/qt3/html/qscrollview-w.png
|
||||
share/doc/qt3/html/qscrollview.html
|
||||
share/doc/qt3/html/qsdialog.png
|
||||
share/doc/qt3/html/qseditwid.png
|
||||
share/doc/qt3/html/qsemaphore-h.html
|
||||
share/doc/qt3/html/qsemaphore-members.html
|
||||
share/doc/qt3/html/qsemaphore.html
|
||||
@ -1270,15 +1239,11 @@ share/doc/qt3/html/qsizepolicy.html
|
||||
share/doc/qt3/html/qsjiscodec-h.html
|
||||
share/doc/qt3/html/qsjiscodec-members.html
|
||||
share/doc/qt3/html/qsjiscodec.html
|
||||
share/doc/qt3/html/qslayout1.png
|
||||
share/doc/qt3/html/qslayout2.png
|
||||
share/doc/qt3/html/qslayout3.png
|
||||
share/doc/qt3/html/qslider-h.html
|
||||
share/doc/qt3/html/qslider-m.png
|
||||
share/doc/qt3/html/qslider-members.html
|
||||
share/doc/qt3/html/qslider-w.png
|
||||
share/doc/qt3/html/qslider.html
|
||||
share/doc/qt3/html/qsmetric.png
|
||||
share/doc/qt3/html/qsocket-h.html
|
||||
share/doc/qt3/html/qsocket-members.html
|
||||
share/doc/qt3/html/qsocket.html
|
||||
@ -1301,14 +1266,11 @@ share/doc/qt3/html/qspinbox-m.png
|
||||
share/doc/qt3/html/qspinbox-members.html
|
||||
share/doc/qt3/html/qspinbox-w.png
|
||||
share/doc/qt3/html/qspinbox.html
|
||||
share/doc/qt3/html/qspinbox2-m.png
|
||||
share/doc/qt3/html/qspinbox2-w.png
|
||||
share/doc/qt3/html/qsplitter-h.html
|
||||
share/doc/qt3/html/qsplitter-m.png
|
||||
share/doc/qt3/html/qsplitter-members.html
|
||||
share/doc/qt3/html/qsplitter-w.png
|
||||
share/doc/qt3/html/qsplitter.html
|
||||
share/doc/qt3/html/qsprojset.png
|
||||
share/doc/qt3/html/qsql-h.html
|
||||
share/doc/qt3/html/qsql-members.html
|
||||
share/doc/qt3/html/qsql.html
|
||||
@ -1355,7 +1317,6 @@ share/doc/qt3/html/qsqlrecordinfo.html
|
||||
share/doc/qt3/html/qsqlresult-h.html
|
||||
share/doc/qt3/html/qsqlresult-members.html
|
||||
share/doc/qt3/html/qsqlresult.html
|
||||
share/doc/qt3/html/qstab.png
|
||||
share/doc/qt3/html/qstack.html
|
||||
share/doc/qt3/html/qstatusbar-h.html
|
||||
share/doc/qt3/html/qstatusbar-m.png
|
||||
@ -1401,7 +1362,6 @@ share/doc/qt3/html/qt-members.html
|
||||
share/doc/qt3/html/qt-template-lib.html
|
||||
share/doc/qt3/html/qt.html
|
||||
share/doc/qt3/html/qt.xml
|
||||
share/doc/qt3/html/qt30-class-chart.png
|
||||
share/doc/qt3/html/qt31-class-chart.png
|
||||
share/doc/qt3/html/qtab-members.html
|
||||
share/doc/qt3/html/qtab.html
|
||||
@ -1477,10 +1437,6 @@ share/doc/qt3/html/qtimerevent-members.html
|
||||
share/doc/qt3/html/qtimerevent.html
|
||||
share/doc/qt3/html/qtl-qvaluelist-example.html
|
||||
share/doc/qt3/html/qtl.html
|
||||
share/doc/qt3/html/qtlogo.png
|
||||
share/doc/qt3/html/qtmultilineedit-h.html
|
||||
share/doc/qt3/html/qtmultilineedit-members.html
|
||||
share/doc/qt3/html/qtmultilineedit.html
|
||||
share/doc/qt3/html/qtoolbar-h.html
|
||||
share/doc/qt3/html/qtoolbar-members.html
|
||||
share/doc/qt3/html/qtoolbar.html
|
||||
@ -1500,9 +1456,6 @@ share/doc/qt3/html/qtranslatormessage.html
|
||||
share/doc/qt3/html/qtsciicodec-h.html
|
||||
share/doc/qt3/html/qtsciicodec-members.html
|
||||
share/doc/qt3/html/qtsciicodec.html
|
||||
share/doc/qt3/html/qttableview-h.html
|
||||
share/doc/qt3/html/qttableview-members.html
|
||||
share/doc/qt3/html/qttableview.html
|
||||
share/doc/qt3/html/quridrag-members.html
|
||||
share/doc/qt3/html/quridrag.html
|
||||
share/doc/qt3/html/qurl-h.html
|
||||
@ -1536,9 +1489,7 @@ share/doc/qt3/html/qvariant.html
|
||||
share/doc/qt3/html/qvbox-h.html
|
||||
share/doc/qt3/html/qvbox-m.png
|
||||
share/doc/qt3/html/qvbox-members.html
|
||||
share/doc/qt3/html/qvbox-w.png
|
||||
share/doc/qt3/html/qvbox.html
|
||||
share/doc/qt3/html/qvbox.png
|
||||
share/doc/qt3/html/qvboxlayout-members.html
|
||||
share/doc/qt3/html/qvboxlayout.html
|
||||
share/doc/qt3/html/qvboxlayout.png
|
||||
@ -1652,7 +1603,6 @@ share/doc/qt3/html/session.png
|
||||
share/doc/qt3/html/shared.html
|
||||
share/doc/qt3/html/shclass.html
|
||||
share/doc/qt3/html/showimg-example.html
|
||||
share/doc/qt3/html/signals-and-slots.png
|
||||
share/doc/qt3/html/signalsandslots.html
|
||||
share/doc/qt3/html/simple-application-example.html
|
||||
share/doc/qt3/html/simple-application.html
|
||||
@ -1662,7 +1612,6 @@ share/doc/qt3/html/small-table-example-example.html
|
||||
share/doc/qt3/html/smooth.png
|
||||
share/doc/qt3/html/sound-example.html
|
||||
share/doc/qt3/html/splitter-example.html
|
||||
share/doc/qt3/html/splitter-views-m.png
|
||||
share/doc/qt3/html/splitter-views-w.png
|
||||
share/doc/qt3/html/sql-driver.html
|
||||
share/doc/qt3/html/sql-examples.html
|
||||
@ -1771,7 +1720,6 @@ share/doc/qt3/html/tablet-example.html
|
||||
share/doc/qt3/html/tagreader-example.html
|
||||
share/doc/qt3/html/tagreader-with-features-example.html
|
||||
share/doc/qt3/html/templates.html
|
||||
share/doc/qt3/html/test.png
|
||||
share/doc/qt3/html/tetrix-example.html
|
||||
share/doc/qt3/html/text.html
|
||||
share/doc/qt3/html/textedit-example.html
|
||||
@ -1802,7 +1750,6 @@ share/doc/qt3/html/tt3_11_about_pt.png
|
||||
share/doc/qt3/html/tt3_11_en.png
|
||||
share/doc/qt3/html/tt3_11_pt.png
|
||||
share/doc/qt3/html/tutorial.html
|
||||
share/doc/qt3/html/tutorial.png
|
||||
share/doc/qt3/html/tutorial1-01.html
|
||||
share/doc/qt3/html/tutorial1-02.html
|
||||
share/doc/qt3/html/tutorial1-03.html
|
||||
|
Loading…
Reference in New Issue
Block a user