Creating execution-required.txt

master
Julien Rosset 5 years ago
parent 78db7d5dc9
commit da944ebb91

@ -18,7 +18,7 @@ void MainWindow::setupUi() {
//region Shortcuts //region Shortcuts
m_ui->actionFileNew->setShortcut(QKeySequence::New); m_ui->actionFileNew->setShortcut(QKeySequence::New);
m_ui->actionFileOpen->setShortcut(QKeySequence::Open); m_ui->actionFileOpenFile->setShortcut(QKeySequence::Open);
m_ui->actionFileSave->setShortcut(QKeySequence::Save); m_ui->actionFileSave->setShortcut(QKeySequence::Save);
m_ui->actionFileSaveAs->setShortcut(QKeySequence::SaveAs); m_ui->actionFileSaveAs->setShortcut(QKeySequence::SaveAs);
m_ui->actionFileReload->setShortcut(QKeySequence::Refresh); m_ui->actionFileReload->setShortcut(QKeySequence::Refresh);
@ -49,8 +49,8 @@ void MainWindow::setupUi() {
//endregion //endregion
} }
void MainWindow::on_actionFileOpen_triggered() { void MainWindow::on_actionFileOpenFile_triggered() {
const QString path = QFileDialog::getOpenFileName( /* const QString path = QFileDialog::getOpenFileName(
this, this,
tr("Choose a file to open"), tr("Choose a file to open"),
qApp->applicationDirPath(), qApp->applicationDirPath(),
@ -61,7 +61,7 @@ void MainWindow::on_actionFileOpen_triggered() {
} }
const QFile file(path, this); const QFile file(path, this);
*/
} }
void MainWindow::on_actionHelpAboutNBTModifier_triggered() { void MainWindow::on_actionHelpAboutNBTModifier_triggered() {

@ -32,7 +32,7 @@ private slots:
/** /**
* Open a file * Open a file
*/ */
void on_actionFileOpen_triggered(); void on_actionFileOpenFile_triggered();
/** /**
* Display the "about" dialog * Display the "about" dialog

@ -0,0 +1,7 @@
Qt5Core.dll
Qt5Gui.dll
Qt5Svg.dll
Qt5Widgets.dll
platforms/qwindows.dll
imageformats/qsvg.dll
iconengines/qsvgicon.dll

@ -1 +1 @@
Subproject commit 45ee7b09575a488daad75128e69d6e92b3850261 Subproject commit 5925acaa6e4641589c04827627e3f6e9172cd2dc
Loading…
Cancel
Save