mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 15:11:36 -04:00
moved Verify function from World menu to File menu
This commit is contained in:
parent
9d009af2a1
commit
676a92e2e0
@ -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…
x
Reference in New Issue
Block a user