Changed: Minor changes

This commit is contained in:
kervala 2016-10-03 17:18:48 +02:00
parent d936b42889
commit 342c4fb1d1
3 changed files with 10 additions and 16 deletions

View file

@ -245,13 +245,15 @@ void CMainWindow::onUninstall()
components = dialog.getSelectedCompenents(); components = dialog.getSelectedCompenents();
} }
COperationDialog dialog;
dialog.setOperation(OperationUninstall);
dialog.setUninstallComponents(components);
if (dialog.exec())
{ {
COperationDialog dialog(this);
dialog.setOperation(OperationUninstall);
dialog.setUninstallComponents(components);
if (dialog.exec())
{
}
} }
} }

View file

@ -771,14 +771,9 @@ void COperationDialog::copyInstaller()
// create menu directory if defined // create menu directory if defined
QString path = config->getMenuDirectory(); QString path = config->getMenuDirectory();
if (!path.isEmpty()) if (!path.isEmpty() && !QDir().mkpath(path))
{ {
QDir dir; qDebug() << "Unable to create directory" << path;
if (!dir.mkpath(path))
{
qDebug() << "Unable to create directory" << path;
}
} }
// create installer link in menu // create installer link in menu

View file

@ -229,9 +229,6 @@ bool resolveShortcut(const QWidget &window, const QString &shortcut, QString &pa
// Handle success // Handle success
path = QDir::fromNativeSeparators(qFromWide(szGotPath)); path = QDir::fromNativeSeparators(qFromWide(szGotPath));
} }
else
{
}
} }
} }
} }