diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 13:46:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-07-08 10:33:33 +0900 |
commit | 7d2c7f0621177487fcc3953921788f7cafc509af (patch) | |
tree | 391ec3fe2be390cdad396ba52e50e904b7ab75d4 /kcontrol/hwmanager/hwdevicetray.cpp | |
parent | df9e4e43b0e3e9945d9b32c1b0683314239d1476 (diff) | |
download | tdebase-7d2c7f0621177487fcc3953921788f7cafc509af.tar.gz tdebase-7d2c7f0621177487fcc3953921788f7cafc509af.zip |
Adjusted to use new TQStringVariantMap type.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcontrol/hwmanager/hwdevicetray.cpp')
-rw-r--r-- | kcontrol/hwmanager/hwdevicetray.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kcontrol/hwmanager/hwdevicetray.cpp b/kcontrol/hwmanager/hwdevicetray.cpp index ae3a1db23..f8e6b89a9 100644 --- a/kcontrol/hwmanager/hwdevicetray.cpp +++ b/kcontrol/hwmanager/hwdevicetray.cpp @@ -301,10 +301,10 @@ void HwDeviceSystemTray::slotUnmountDevice(int parameter) TDEStorageDevice* sdevice = static_cast<TDEStorageDevice*>(hwdevice); if ((sdevice->diskUUID() == uuid) || (sdevice->systemPath() == uuid)) { if (!sdevice->mountPath().isEmpty()) { - TDEStorageOpResult unmountResult = sdevice->unmountDevice(); + TQStringVariantMap unmountResult = sdevice->unmountDevice(); if (unmountResult["result"].toBool() == false) { TQString errStr = unmountResult.contains("errStr") ? unmountResult["errStr"].toString() : TQString::null; - TQString retcodeStr = unmountResult.contains("retCode") ? unmountResult["retCode"].asString() : "not available"; + TQString retcodeStr = unmountResult.contains("retCode") ? unmountResult["retCode"].toString() : "not available"; KMessageBox::error(0, i18n("<qt><b>Unable to eject device</b><p>Detailed error information:<br>%1 (error code %2)</qt>").arg(errStr).arg(retcodeStr), i18n("Eject Failed")); } return; |