2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00

Rename everything

This commit is contained in:
2021-04-10 01:42:06 -07:00
parent 05d8ab688e
commit 9bae2f943e
1198 changed files with 2884 additions and 2883 deletions

View File

@@ -7,7 +7,7 @@
ArgumentEditor::ArgumentEditor(QWidget* parent) : QDialog(parent), m_ui(std::make_unique<Ui::ArgumentEditor>()) {
m_ui->setupUi(this);
m_model.setStringList(QSettings().value(QStringLiteral("urde_arguments")).toStringList());
m_model.setStringList(QSettings().value(QStringLiteral("metaforce_arguments")).toStringList());
m_ui->argumentEditor->setModel(&m_model);
}
@@ -59,7 +59,7 @@ void ArgumentEditor::on_deleteButton_clicked() {
void ArgumentEditor::on_buttonBox_clicked(QAbstractButton* button) {
auto* buttonBox = qobject_cast<QDialogButtonBox*>(sender());
if (button == buttonBox->button(QDialogButtonBox::Ok)) {
QSettings().setValue(QStringLiteral("urde_arguments"), m_model.stringList());
QSettings().setValue(QStringLiteral("metaforce_arguments"), m_model.stringList());
accept();
} else {
reject();