mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-21 09:39:41 +00:00
moved Verify function from World menu to File menu
This commit is contained in:
parent
9d009af2a1
commit
676a92e2e0
1 changed files with 4 additions and 4 deletions
|
@ -41,6 +41,10 @@ void CSVDoc::View::setupFileMenu()
|
||||||
connect (mSave, SIGNAL (triggered()), this, SLOT (save()));
|
connect (mSave, SIGNAL (triggered()), this, SLOT (save()));
|
||||||
file->addAction (mSave);
|
file->addAction (mSave);
|
||||||
|
|
||||||
|
mVerify = new QAction (tr ("&Verify"), this);
|
||||||
|
connect (mVerify, SIGNAL (triggered()), this, SLOT (verify()));
|
||||||
|
file->addAction (mVerify);
|
||||||
|
|
||||||
QAction *close = new QAction (tr ("&Close"), this);
|
QAction *close = new QAction (tr ("&Close"), this);
|
||||||
connect (close, SIGNAL (triggered()), this, SLOT (close()));
|
connect (close, SIGNAL (triggered()), this, SLOT (close()));
|
||||||
file->addAction(close);
|
file->addAction(close);
|
||||||
|
@ -97,10 +101,6 @@ void CSVDoc::View::setupWorldMenu()
|
||||||
QAction *factions = new QAction (tr ("Factions"), this);
|
QAction *factions = new QAction (tr ("Factions"), this);
|
||||||
connect (factions, SIGNAL (triggered()), this, SLOT (addFactionsSubView()));
|
connect (factions, SIGNAL (triggered()), this, SLOT (addFactionsSubView()));
|
||||||
world->addAction (factions);
|
world->addAction (factions);
|
||||||
|
|
||||||
mVerify = new QAction (tr ("&Verify"), this);
|
|
||||||
connect (mVerify, SIGNAL (triggered()), this, SLOT (verify()));
|
|
||||||
world->addAction (mVerify);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSVDoc::View::setupUi()
|
void CSVDoc::View::setupUi()
|
||||||
|
|
Loading…
Reference in a new issue