Display path with native separators.
This commit is contained in:
parent
f89baebd71
commit
88630faf87
@ -35,7 +35,7 @@
|
|||||||
#define VER_LAMEXP_MINOR_LO 1
|
#define VER_LAMEXP_MINOR_LO 1
|
||||||
#define VER_LAMEXP_TYPE Beta
|
#define VER_LAMEXP_TYPE Beta
|
||||||
#define VER_LAMEXP_PATCH 13
|
#define VER_LAMEXP_PATCH 13
|
||||||
#define VER_LAMEXP_BUILD 1669
|
#define VER_LAMEXP_BUILD 1670
|
||||||
#define VER_LAMEXP_CONFG 1558
|
#define VER_LAMEXP_CONFG 1558
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -40,7 +40,7 @@ WaveDecoder::~WaveDecoder(void)
|
|||||||
|
|
||||||
bool WaveDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag)
|
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);
|
emit statusUpdated(0);
|
||||||
const bool okay = MUtils::OS::copy_file(sourceFile, outputFile);
|
const bool okay = MUtils::OS::copy_file(sourceFile, outputFile);
|
||||||
|
Loading…
Reference in New Issue
Block a user