OSDN Git Service

More code refactoring and clean-up.
[lamexp/LameXP.git] / src / Decoder_ALAC.cpp
index 6767eae..ecdc438 100644 (file)
 
 #include "Decoder_ALAC.h"
 
+//Internal
 #include "Global.h"
 
+//MUtils
+#include <MUtils/Exception.h>
+
+//Qt
 #include <QDir>
 #include <QProcess>
 #include <QRegExp>
 
 ALACDecoder::ALACDecoder(void)
 :
-       m_binary(lamexp_lookup_tool("refalac.exe"))
+       m_binary(lamexp_tool_lookup("refalac.exe"))
 {
        if(m_binary.isEmpty())
        {
-               THROW("Error initializing ALAC decoder. Tool 'refalac.exe' is not registred!");
+               MUTILS_THROW("Error initializing ALAC decoder. Tool 'refalac.exe' is not registred!");
        }
 }