OSDN Git Service

Display path with native separators.
authorLoRd_MuldeR <mulder2@gmx.de>
Sun, 4 Jan 2015 18:41:39 +0000 (19:41 +0100)
committerLoRd_MuldeR <mulder2@gmx.de>
Sun, 4 Jan 2015 18:41:39 +0000 (19:41 +0100)
src/Config.h
src/Decoder_Wave.cpp

index 8af91f8..efd0c17 100644 (file)
@@ -35,7 +35,7 @@
 #define VER_LAMEXP_MINOR_LO                                    1
 #define VER_LAMEXP_TYPE                                                Beta
 #define VER_LAMEXP_PATCH                                       13
-#define VER_LAMEXP_BUILD                                       1669
+#define VER_LAMEXP_BUILD                                       1670
 #define VER_LAMEXP_CONFG                                       1558
 
 ///////////////////////////////////////////////////////////////////////////////
index 90bb39b..e9e8f4e 100644 (file)
@@ -40,7 +40,7 @@ WaveDecoder::~WaveDecoder(void)
 
 bool WaveDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag)
 {
-       emit messageLogged(QString("Copy file \"%1\" to \"%2\"").arg(sourceFile, outputFile));
+       emit messageLogged(QString("Copy file \"%1\" to \"%2\"").arg(QDir::toNativeSeparators(sourceFile), QDir::toNativeSeparators(outputFile)));
 
        emit statusUpdated(0);
        const bool okay = MUtils::OS::copy_file(sourceFile, outputFile);