From 8633f5b9a97c3775c95d89abaf2e659d0859149e Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sat, 10 Aug 2013 16:30:14 -0500 Subject: [PATCH] Fix FTBFS. --- libk3bdevice/k3bhalconnection.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libk3bdevice/k3bhalconnection.cpp b/libk3bdevice/k3bhalconnection.cpp index 1877d78..476d016 100644 --- a/libk3bdevice/k3bhalconnection.cpp +++ b/libk3bdevice/k3bhalconnection.cpp @@ -840,9 +840,9 @@ int K3bDevice::HalConnection::mount( K3bDevice::Device* dev, TDEStorageDevice* sdevice = static_cast(hwdevice); // FIXME - // Options from 'options' are not currently loaded into 'optionString' - TQString optionString; - TQString mountedPath = sdevice->mountDevice(mountPoint, optionString); + // Options from 'options' are not currently loaded into 'mountOptions' + TDEStorageMountOptions mountOptions; + TQString mountedPath = sdevice->mountDevice(mountPoint, mountOptions); if (mountedPath.isNull()) { return org_freedesktop_Hal_CommunicationError; } @@ -869,8 +869,8 @@ int K3bDevice::HalConnection::unmount(K3bDevice::Device* dev, const TQStringList TDEStorageDevice* sdevice = static_cast(hwdevice); // FIXME - // Options from 'options' are not currently loaded into 'optionString' - TQString optionString; + // Options from 'options' are not currently loaded into 'mountOptions' + TQString mountOptions; if (!sdevice->unmountDevice(NULL)) { // Unmount failed!