summaryrefslogtreecommitdiff
path: root/x11-toolkits/qt33/files/qapplication_x11.cpp.diff
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2004-03-09 19:41:12 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2004-03-09 19:41:12 +0000
commitf64c6af4f4d0803346188ad60d5055ea8b8d63dc (patch)
treea4ccebaea6c27a0834589e8629dbcdc5ee328c8b /x11-toolkits/qt33/files/qapplication_x11.cpp.diff
parent. Build and install API documentation if NOPORTDOCS isn't set. (diff)
Update to KDE 3.2.1 / QT 3.3.1
Important changes: ================== KDE: - Audio/arts does not install artswrapper anymore, instead it is provided by audio/artswrapper. See UPDATING. - misc/kdeaddons3 is now a metaport with editors/kate-plugins editors/vimpart games/atlantikdesigner misc/kaddressbook-plugins misc/kfile-plugins misc/kicker-applets misc/knewsticker-scripts misc/konq-plugins misc/ksig misc/renamedlgplugins multimedia/noatun-plugins net/kontact-plugins as slave ports. - A number of KDE ports now uses OPTIONS do make various WITH_* options more visible. - Plist fixes - devel/kdevelop should be able to detect FreeBSD's autoconf/automake now for newly created projects. - kdebase will no longer remove previous KDM configurations. This won't take effect during the update from 3.2.0 to 3.2.1 (as deinstalling 3.2.0 will still remove the configuration), but subsequent updates will merge old configs. QT: - Previous versions of QT could be compiled with debugging-support enabled by defining DEBUG. This switch has been renamed to the more unambiguous WANT_QT_DEBUG (similar to WANT_KDE_DEBUG in the KDE ports).
Diffstat (limited to 'x11-toolkits/qt33/files/qapplication_x11.cpp.diff')
-rw-r--r--x11-toolkits/qt33/files/qapplication_x11.cpp.diff48
1 files changed, 0 insertions, 48 deletions
diff --git a/x11-toolkits/qt33/files/qapplication_x11.cpp.diff b/x11-toolkits/qt33/files/qapplication_x11.cpp.diff
deleted file mode 100644
index 877de05c5950..000000000000
--- a/x11-toolkits/qt33/files/qapplication_x11.cpp.diff
+++ /dev/null
@@ -1,48 +0,0 @@
-===================================================================
-RCS file: /home2/webcvs/mirror/qt-copy/src/kernel/qapplication_x11.cpp,v
-retrieving revision 1.81
-retrieving revision 1.82
-diff -u -p -r1.81 -r1.82
---- qt-copy/src/kernel/qapplication_x11.cpp 2002/11/13 16:46:34 1.81
-+++ qt-copy/src/kernel/qapplication_x11.cpp 2002/11/14 08:57:34 1.82
-@@ -3691,39 +3691,9 @@ void qt_leave_modal( QWidget *widget )
-
- bool qt_try_modal( QWidget *widget, XEvent *event )
- {
-- if ( qApp->activePopupWidget() )
-+ if ( qt_tryModalHelper( widget ) )
- return TRUE;
-
-- QWidget *modal=0, *top=QApplication::activeModalWidget();
--
-- QWidget* groupLeader = widget;
-- widget = widget->topLevelWidget();
--
-- if ( widget->testWFlags(Qt::WShowModal) ) // widget is modal
-- modal = widget;
-- if ( !top || modal == top ) // don't block event
-- return TRUE;
--
-- while ( groupLeader && !groupLeader->testWFlags( Qt::WGroupLeader ) )
-- groupLeader = groupLeader->parentWidget();
--
-- if ( groupLeader ) {
-- // Does groupLeader have a child in qt_modal_stack?
-- bool unrelated = TRUE;
-- modal = qt_modal_stack->first();
-- while (modal && unrelated) {
-- QWidget* p = modal->parentWidget();
-- while ( p && p != groupLeader && !p->testWFlags( Qt::WGroupLeader) ) {
-- p = p->parentWidget();
-- }
-- modal = qt_modal_stack->next();
-- if ( p == groupLeader ) unrelated = FALSE;
-- }
--
-- if ( unrelated )
-- return TRUE; // don't block event
-- }
--
- bool block_event = FALSE;
- switch ( event->type ) {
- case ButtonPress: // disallow mouse/key events