1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
diff -aur --exclude=Makefile.in --exclude=Makefile blam-1.8.2-orig/src/Application.cs blam-1.8.2/src/Application.cs
--- blam-1.8.2-orig/src/Application.cs 2005-06-19 04:27:08.000000000 -0700
+++ blam-1.8.2/src/Application.cs 2006-10-28 08:06:41.000000000 -0700
@@ -371,6 +371,11 @@
}
}
+ public void OnDeleteEvent (object obj, DeleteEventArgs args)
+ {
+ QuitActivated (null, null);
+ }
+
public void QuitActivated(object obj, EventArgs args)
{
SaveWindowState();
Only in blam-1.8.2/src/: Defines.cs
diff -aur --exclude=Makefile.in --exclude=Makefile blam-1.8.2-orig/src/Dialogs.cs blam-1.8.2/src/Dialogs.cs
--- blam-1.8.2-orig/src/Dialogs.cs 2005-06-19 04:29:31.000000000 -0700
+++ blam-1.8.2/src/Dialogs.cs 2006-10-28 08:09:02.000000000 -0700
@@ -45,7 +45,7 @@
about.Hide();
}
- public void OnDelete(object obj, EventArgs args)
+ public void OnDelete(object obj, DeleteEventArgs args)
{
aboutBox = null;
}
Only in blam-1.8.2/src/: blam.exe
Only in blam-1.8.2/src/: blam.exe.mdb
diff -aur --exclude=Makefile.in --exclude=Makefile blam-1.8.2-orig/src/blam.glade blam-1.8.2/src/blam.glade
--- blam-1.8.2-orig/src/blam.glade 2004-10-23 06:00:02.000000000 -0700
+++ blam-1.8.2/src/blam.glade 2006-10-28 08:11:42.000000000 -0700
@@ -19,7 +19,7 @@
<property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
<property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
<signal name="key_press_event" handler="MainWindowKeyPressed" last_modification_time="Thu, 08 Jan 2004 16:30:13 GMT"/>
- <signal name="delete_event" handler="QuitActivated" last_modification_time="Sun, 11 Jan 2004 00:01:56 GMT"/>
+ <signal name="delete_event" handler="OnDeleteEvent" last_modification_time="Sun, 11 Jan 2004 00:01:56 GMT"/>
<child>
<widget class="GtkVBox" id="vbox1">
|