|
|
|
@ -328,6 +328,7 @@ bool ejectDriveUDisks(TDEStorageDevice* sdevice) {
|
|
|
|
|
if (dbusConn.isConnected()) {
|
|
|
|
|
TQString blockDeviceString = sdevice->deviceNode();
|
|
|
|
|
blockDeviceString.replace("/dev/", "");
|
|
|
|
|
blockDeviceString.replace("-", "_2d");
|
|
|
|
|
blockDeviceString = "/org/freedesktop/UDisks/devices/" + blockDeviceString;
|
|
|
|
|
|
|
|
|
|
// Eject the drive!
|
|
|
|
@ -358,6 +359,7 @@ bool ejectDriveUDisks2(TDEStorageDevice* sdevice) {
|
|
|
|
|
if (dbusConn.isConnected()) {
|
|
|
|
|
TQString blockDeviceString = sdevice->deviceNode();
|
|
|
|
|
blockDeviceString.replace("/dev/", "");
|
|
|
|
|
blockDeviceString.replace("-", "_2d");
|
|
|
|
|
blockDeviceString = "/org/freedesktop/UDisks2/block_devices/" + blockDeviceString;
|
|
|
|
|
TQT_DBusProxy hardwareControl("org.freedesktop.UDisks2", blockDeviceString, "org.freedesktop.DBus.Properties", dbusConn);
|
|
|
|
|
if (hardwareControl.canSend()) {
|
|
|
|
@ -424,6 +426,7 @@ int mountDriveUDisks(TQString deviceNode, TQString fileSystemType, TQStringList
|
|
|
|
|
if (dbusConn.isConnected()) {
|
|
|
|
|
TQString blockDeviceString = deviceNode;
|
|
|
|
|
blockDeviceString.replace("/dev/", "");
|
|
|
|
|
blockDeviceString.replace("-", "_2d");
|
|
|
|
|
blockDeviceString = "/org/freedesktop/UDisks/devices/" + blockDeviceString;
|
|
|
|
|
|
|
|
|
|
// Mount the drive!
|
|
|
|
@ -466,6 +469,7 @@ int mountDriveUDisks2(TQString deviceNode, TQString fileSystemType, TQString mou
|
|
|
|
|
if (dbusConn.isConnected()) {
|
|
|
|
|
TQString blockDeviceString = deviceNode;
|
|
|
|
|
blockDeviceString.replace("/dev/", "");
|
|
|
|
|
blockDeviceString.replace("-", "_2d");
|
|
|
|
|
blockDeviceString = "/org/freedesktop/UDisks2/block_devices/" + blockDeviceString;
|
|
|
|
|
|
|
|
|
|
// Mount the drive!
|
|
|
|
@ -512,6 +516,7 @@ int unMountDriveUDisks(TQString deviceNode, TQStringList unMountOptions, TQStrin
|
|
|
|
|
if (dbusConn.isConnected()) {
|
|
|
|
|
TQString blockDeviceString = deviceNode;
|
|
|
|
|
blockDeviceString.replace("/dev/", "");
|
|
|
|
|
blockDeviceString.replace("-", "_2d");
|
|
|
|
|
blockDeviceString = "/org/freedesktop/UDisks/devices/" + blockDeviceString;
|
|
|
|
|
|
|
|
|
|
// Mount the drive!
|
|
|
|
@ -553,6 +558,7 @@ int unMountDriveUDisks2(TQString deviceNode, TQString unMountOptions, TQString*
|
|
|
|
|
if (dbusConn.isConnected()) {
|
|
|
|
|
TQString blockDeviceString = deviceNode;
|
|
|
|
|
blockDeviceString.replace("/dev/", "");
|
|
|
|
|
blockDeviceString.replace("-", "_2d");
|
|
|
|
|
blockDeviceString = "/org/freedesktop/UDisks2/block_devices/" + blockDeviceString;
|
|
|
|
|
|
|
|
|
|
// Mount the drive!
|
|
|
|
|