diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2005-11-05 11:19:58 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2005-11-05 11:19:58 +0000 |
commit | de94e0e1609a9f2a40be0bdc9592002fe3464557 (patch) | |
tree | e63a7473b09ed1d3956224c6f37079320c4da68e /x11/kdelibs3/files/patch-kio_kioexec-main.cpp | |
parent | b3fc541cf1e8cc80c15b4d48188487501618ae39 (diff) | |
download | ports-de94e0e1609a9f2a40be0bdc9592002fe3464557.tar.gz ports-de94e0e1609a9f2a40be0bdc9592002fe3464557.zip |
Notes
Diffstat (limited to 'x11/kdelibs3/files/patch-kio_kioexec-main.cpp')
-rw-r--r-- | x11/kdelibs3/files/patch-kio_kioexec-main.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/x11/kdelibs3/files/patch-kio_kioexec-main.cpp b/x11/kdelibs3/files/patch-kio_kioexec-main.cpp new file mode 100644 index 000000000000..134d8d1660eb --- /dev/null +++ b/x11/kdelibs3/files/patch-kio_kioexec-main.cpp @@ -0,0 +1,17 @@ +--- kio/kioexec/main.cpp.orig Sun Oct 23 18:39:26 2005 ++++ kio/kioexec/main.cpp Sun Oct 23 18:40:10 2005 +@@ -124,8 +124,12 @@ + } + args->clear(); + +- if ( tempfiles ) +- slotRunApp(); // does not return ++ if ( tempfiles ) { ++ // #113991 ++ QTimer::singleShot( 0, this, SLOT( slotRunApp() ) ); ++ //slotRunApp(); // does not return ++ return; ++ } + + counter = 0; + if ( counter == expectedCounter ) |