mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-16 16:14:47 -04:00
Version 0.9.3
- minor bugfix thanks to XCode built-in static analyzer
This commit is contained in:
parent
83f1158933
commit
e6e4e69b4b
12 changed files with 717 additions and 50 deletions
|
@ -40,7 +40,8 @@ UEFITool::UEFITool(QWidget *parent) :
|
|||
connect(ui->actionAbout, SIGNAL(triggered()), this, SLOT(about()));
|
||||
connect(ui->actionAboutQt, SIGNAL(triggered()), this, SLOT(aboutQt()));
|
||||
connect(ui->actionQuit, SIGNAL(triggered()), this, SLOT(exit()));
|
||||
// Enable Drag-and-Drop actions
|
||||
|
||||
// Enable Drag-and-Drop actions
|
||||
this->setAcceptDrops(true);
|
||||
|
||||
// Initialize non-persistent data
|
||||
|
@ -59,7 +60,7 @@ void UEFITool::init()
|
|||
ui->messageListWidget->clear();
|
||||
ui->infoEdit->clear();
|
||||
|
||||
// Disable all actions except openImageFile
|
||||
// Disable actions and menus
|
||||
ui->actionExtract->setDisabled(true);
|
||||
ui->actionExtractBody->setDisabled(true);
|
||||
ui->actionExtractUncompressed->setDisabled(true);
|
||||
|
@ -70,6 +71,7 @@ void UEFITool::init()
|
|||
ui->actionInsertBefore->setDisabled(true);
|
||||
ui->actionInsertAfter->setDisabled(true);
|
||||
ui->actionSaveImageFile->setDisabled(true);
|
||||
ui->menuChangeCompressionTo->setDisabled(true);
|
||||
|
||||
// Make new ffsEngine
|
||||
if (ffsEngine)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue