From 82c3b55a9a0adaf07917edb3407f7ec8c109aacc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 1 Jun 2019 14:10:24 +0900 Subject: [PATCH] Adjusted to use new TQStringVariantMap type. Signed-off-by: Michele Calgaro --- libk3bdevice/k3bhalconnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libk3bdevice/k3bhalconnection.cpp b/libk3bdevice/k3bhalconnection.cpp index 7a17bf7..d5b6dfd 100644 --- a/libk3bdevice/k3bhalconnection.cpp +++ b/libk3bdevice/k3bhalconnection.cpp @@ -843,7 +843,7 @@ int K3bDevice::HalConnection::mount( K3bDevice::Device* dev, // FIXME // Options from 'options' are not currently loaded into 'mountOptions' TDEStorageMountOptions mountOptions; - TDEStorageOpResult mountResult = sdevice->mountDevice(mountPoint, mountOptions); + TQStringVariantMap mountResult = sdevice->mountDevice(mountPoint, mountOptions); TQString mountedPath = mountResult.contains("mountPath") ? mountResult["mountPath"].toString() : TQString::null; if (mountedPath.isEmpty()) { return org_freedesktop_Hal_CommunicationError; @@ -874,7 +874,7 @@ int K3bDevice::HalConnection::unmount(K3bDevice::Device* dev, const TQStringList // Options from 'options' are not currently loaded into 'mountOptions' TQString mountOptions; - TDEStorageOpResult unmountResult = sdevice->unmountDevice(); + TQStringVariantMap unmountResult = sdevice->unmountDevice(); if (unmountResult["result"].toBool() == false) { // Unmount failed! return org_freedesktop_Hal_CommunicationError;