summaryrefslogtreecommitdiffstats
path: root/redhat/applications/k3b/k3b-1.0.3-umount.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2015-03-22 19:39:06 +0100
committerFrançois Andriot <albator78@libertysurf.fr>2015-03-22 19:39:06 +0100
commitf5c9c8fef913e5f2561367d63d7104a55811b599 (patch)
treecb95dad8d9d0b515c7630719f83ca652b62f396d /redhat/applications/k3b/k3b-1.0.3-umount.patch
parentd228a4cf132c8390b7e1c029baba556b8e5daecb (diff)
downloadtde-packaging-f5c9c8fef913e5f2561367d63d7104a55811b599.tar.gz
tde-packaging-f5c9c8fef913e5f2561367d63d7104a55811b599.zip
RPM Packaging: update k3b
Diffstat (limited to 'redhat/applications/k3b/k3b-1.0.3-umount.patch')
-rw-r--r--redhat/applications/k3b/k3b-1.0.3-umount.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/redhat/applications/k3b/k3b-1.0.3-umount.patch b/redhat/applications/k3b/k3b-1.0.3-umount.patch
deleted file mode 100644
index 394aff152..000000000
--- a/redhat/applications/k3b/k3b-1.0.3-umount.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- k3b-1.0.3/libk3b/core/k3bglobals.cpp.umount 2007-07-27 21:26:30.000000000 +0200
-+++ k3b-1.0.3/libk3b/core/k3bglobals.cpp 2007-07-27 21:31:26.000000000 +0200
-@@ -569,7 +569,24 @@
- return true;
- }
-
-- // now try pmount
-+#ifdef HAVE_HAL
-+ if (!K3bDevice::HalConnection::instance()->unmount( dev ))
-+ return true;
-+#endif
-+
-+ QString gumountBin = K3b::findExe( "gnome-umount" );
-+ if( !gumountBin.isEmpty() ) {
-+ KProcess p;
-+ p << gumountBin;
-+ p << "-u";
-+ p << "-d";
-+ p << dev->blockDeviceName();
-+ p.start( KProcess::Block );
-+ if( !p.exitStatus() )
-+ return true;
-+ }
-+
-+// now try pmount
- QString pumountBin = K3b::findExe( "pumount" );
- if( !pumountBin.isEmpty() ) {
- KProcess p;
-@@ -577,15 +592,11 @@
- p << "-l"; // lazy unmount
- p << dev->blockDeviceName();
- p.start( KProcess::Block );
-- return !p.exitStatus();
-- }
-- else {
--#ifdef HAVE_HAL
-- return !K3bDevice::HalConnection::instance()->unmount( dev );
--#else
-- return false;
--#endif
-+ if( !p.exitStatus() )
-+ return true;
- }
-+
-+ return false;
- }
-
-