summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/aqemu/files/aqemu-0.8.2_sigsev_propertis.patch')
-rw-r--r--app-emulation/aqemu/files/aqemu-0.8.2_sigsev_propertis.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-emulation/aqemu/files/aqemu-0.8.2_sigsev_propertis.patch b/app-emulation/aqemu/files/aqemu-0.8.2_sigsev_propertis.patch
deleted file mode 100644
index b7cc5950bd5f..000000000000
--- a/app-emulation/aqemu/files/aqemu-0.8.2_sigsev_propertis.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- a/Device_Manager_Widget.cpp 2011-09-13 21:45:58.883389571 +0200
-+++ b/Device_Manager_Widget.cpp 2011-09-13 21:55:01.401866022 +0200
-@@ -981,9 +981,10 @@
- {
- if( ui.Devices_List->currentItem()->data(512).toString() == "device" + QString::number(fx) )
- {
-- finded = true;
--
- Storage_Devices.removeAt( fx );
-+ ui.Devices_List->takeItem( ui.Devices_List->currentRow() );
-+ finded = true;
-+ break;
- }
- }
-
-@@ -993,10 +994,24 @@
- "Incorrect Device!" );
- return;
- }
-+ else
-+ {
-+ // Rename items
-+ for( int ix = 0, count = 0; ix < ui.Devices_List->count(); ++ix )
-+ {
-+ if( ui.Devices_List->item(ix)->data(512).toString().contains("device") )
-+ {
-+ ui.Devices_List->item(ix)->setData( 512, QString("device%1").arg(count) );
-+ ++count;
-+ }
-+ }
-+
-+ emit Device_Changet();
-+ return;
-+ }
- }
-
- ui.Devices_List->takeItem( ui.Devices_List->currentRow() );
--
- emit Device_Changet();
- }
-