slot_openDxf fix Windows path

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4363 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-02-28 18:54:49 +00:00
parent ec7cf3f213
commit f7eb6e0105

View File

@@ -1061,10 +1061,9 @@ void QETElementEditor::openRecentFile(const QString &filepath) {
* @brief QETElementEditor::slot_openDxf
*/
void QETElementEditor::slot_openDxf (){
#ifdef Q_OS_WIN
QString program = (QDir::homePath() + "/qet/DXFtoQET.exe");
#endif
#ifdef Q_OS_LINUX
#ifdef Q_OS_WIN32
QString program = (QDir::homePath() + "/Application Data/qet/DXFtoQET.exe");
#else
QString program = (QDir::homePath() + "/.qet/DXFtoQET");
#endif
QStringList arguments;