@@ -286,15 +286,15 @@ void MainWindow::build_operations_menu(QVBoxLayout* target_layout) {
286
286
this ->button_read_rom = new QPushButton (" Read ROM" );
287
287
this ->button_read_cartridge = new QPushButton (" Read P2000T Cartridge" );
288
288
this ->button_flash_rom = new QPushButton (" Write ROM" );
289
- this ->button_flash_rom_quick = new QPushButton (" QuickWrite ROM" );
289
+ // this->button_flash_rom_quick = new QPushButton("QuickWrite ROM");
290
290
this ->button_flash_bank = new QPushButton (" Write ROM to bank" );
291
291
this ->button_scan_slots = new QPushButton (" Scan slots" );
292
292
293
293
layout->addWidget (this ->button_identify_chip );
294
294
layout->addWidget (this ->button_read_rom );
295
295
layout->addWidget (this ->button_read_cartridge );
296
296
layout->addWidget (this ->button_flash_rom );
297
- layout->addWidget (this ->button_flash_rom_quick );
297
+ // layout->addWidget(this->button_flash_rom_quick);
298
298
layout->addWidget (this ->button_flash_bank );
299
299
layout->addWidget (this ->button_erase_chip );
300
300
layout->addWidget (this ->button_scan_slots );
@@ -304,14 +304,14 @@ void MainWindow::build_operations_menu(QVBoxLayout* target_layout) {
304
304
this ->button_read_cartridge ->setEnabled (false );
305
305
this ->button_read_rom ->setEnabled (false );
306
306
this ->button_flash_rom ->setEnabled (false );
307
- this ->button_flash_rom_quick ->setEnabled (false );
307
+ // this->button_flash_rom_quick->setEnabled(false);
308
308
this ->button_flash_bank ->setEnabled (false );
309
309
this ->button_scan_slots ->setEnabled (false );
310
310
311
311
connect (this ->button_read_rom , SIGNAL (released ()), this , SLOT (read_rom ()));
312
312
connect (this ->button_read_cartridge , SIGNAL (released ()), this , SLOT (read_cartridge ()));
313
- connect (this ->button_flash_rom , SIGNAL (released ()), this , SLOT (flash_rom ()));
314
- connect (this ->button_flash_rom_quick , SIGNAL (released ()), this , SLOT (flash_rom_quick ()));
313
+ connect (this ->button_flash_rom , SIGNAL (released ()), this , SLOT (flash_rom_quick ()));
314
+ // connect(this->button_flash_rom_quick, SIGNAL(released()), this, SLOT(flash_rom_quick()));
315
315
connect (this ->button_identify_chip , SIGNAL (released ()), this , SLOT (read_chip_id ()));
316
316
connect (this ->button_flash_bank , SIGNAL (released ()), this , SLOT (flash_bank ()));
317
317
connect (this ->button_erase_chip , SIGNAL (released ()), this , SLOT (erase_chip ()));
@@ -874,7 +874,7 @@ void MainWindow::read_chip_id() {
874
874
// enable buttons
875
875
this ->button_read_rom ->setEnabled (true );
876
876
this ->button_flash_rom ->setEnabled (true );
877
- this ->button_flash_rom_quick ->setEnabled (true );
877
+ // this->button_flash_rom_quick->setEnabled(true);
878
878
this ->button_flash_bank ->setEnabled (true );
879
879
this ->button_erase_chip ->setEnabled (true );
880
880
this ->button_scan_slots ->setEnabled (true );
0 commit comments