diff options
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 ) |