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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
Files gnome-pilot-2.0.10.orig/capplet/gnome-palm-conduit.png and gnome-pilot-2.0.10/capplet/gnome-palm-conduit.png differ
Files gnome-pilot-2.0.10.orig/capplet/gnome-palm.png and gnome-pilot-2.0.10/capplet/gnome-palm.png differ
diff -urN gnome-pilot-2.0.10.orig/capplet/gnome-pilot-capplet.c gnome-pilot-2.0.10/capplet/gnome-pilot-capplet.c
--- gnome-pilot-2.0.10.orig/capplet/gnome-pilot-capplet.c 2003-05-02 08:55:39.000000000 -0500
+++ gnome-pilot-2.0.10/capplet/gnome-pilot-capplet.c 2004-08-12 00:04:01.090633768 -0500
@@ -171,18 +171,18 @@
priv->xml = glade_xml_new (GLADEDATADIR "/gpilotd-capplet.glade", "CappletMain", NULL);
if (!priv->xml) {
g_message ("gnome-pilot-capplet init(): Could not load the Glade XML file!");
- goto error;
+ return;
}
if (!get_widgets (gpcap)) {
g_message ("gnome-pilot-capplet init(): Could not find all widgets in the XML file!");
- goto error;
+ return;
}
fill_widgets (gpcap);
init_widgets (gpcap);
- error:
+
}
GnomePilotCapplet *
diff -urN gnome-pilot-2.0.10.orig/capplet/gnome-pilot-cdialog.c gnome-pilot-2.0.10/capplet/gnome-pilot-cdialog.c
--- gnome-pilot-2.0.10.orig/capplet/gnome-pilot-cdialog.c 2003-04-22 15:51:06.000000000 -0500
+++ gnome-pilot-2.0.10/capplet/gnome-pilot-cdialog.c 2004-08-12 00:04:01.096632856 -0500
@@ -112,17 +112,17 @@
priv->xml = glade_xml_new (GLADEDATADIR "/gpilotd-capplet.glade", "ConduitSettings", NULL);
if (!priv->xml) {
g_message ("gnome-pilot-cdialog init(): Could not load the Glade XML file!");
- goto error;
+ return;
}
if (!get_widgets (gpcd)) {
g_message ("gnome-pilot-cdialog init(): Could not find all widgets in the XML file!");
- goto error;
+ return;
}
gnome_dialog_close_hides (GNOME_DIALOG (priv->dialog), TRUE);
- error:
+
}
diff -urN gnome-pilot-2.0.10.orig/capplet/gnome-pilot-ddialog.c gnome-pilot-2.0.10/capplet/gnome-pilot-ddialog.c
--- gnome-pilot-2.0.10.orig/capplet/gnome-pilot-ddialog.c 2003-04-22 16:12:36.000000000 -0500
+++ gnome-pilot-2.0.10/capplet/gnome-pilot-ddialog.c 2004-08-12 00:04:01.099632400 -0500
@@ -114,15 +114,15 @@
priv->xml = glade_xml_new (GLADEDATADIR "/gpilotd-capplet.glade", "DeviceSettings", NULL);
if (!priv->xml) {
g_message ("gnome-pilot-ddialog init(): Could not load the Glade XML file!");
- goto error;
+ return;
}
if (!get_widgets (gpdd)) {
g_message ("gnome-pilot-ddialog init(): Could not find all widgets in the XML file!");
- goto error;
+ return;
}
- error:
+
}
diff -urN gnome-pilot-2.0.10.orig/capplet/gnome-pilot-druid.c gnome-pilot-2.0.10/capplet/gnome-pilot-druid.c
--- gnome-pilot-2.0.10.orig/capplet/gnome-pilot-druid.c 2003-05-13 12:29:59.000000000 -0500
+++ gnome-pilot-2.0.10/capplet/gnome-pilot-druid.c 2004-08-12 00:04:01.105631488 -0500
@@ -168,19 +168,19 @@
priv->xml = glade_xml_new (GLADEDATADIR "/gpilotd-capplet.glade", NULL, NULL);
if (!priv->xml) {
g_message ("gnome-pilot-druid init(): Could not load the Glade XML file!");
- goto error;
+ return;
}
if (!get_widgets (gpd)) {
g_message ("gnome-pilot-druid init(): Could not find all widgets in the XML file!");
- goto error;
+ return;
}
map_widgets (gpd);
fill_widgets (gpd);
init_widgets (gpd);
- error:
+
}
diff -urN gnome-pilot-2.0.10.orig/capplet/gnome-pilot-pdialog.c gnome-pilot-2.0.10/capplet/gnome-pilot-pdialog.c
--- gnome-pilot-2.0.10.orig/capplet/gnome-pilot-pdialog.c 2003-04-23 10:39:44.000000000 -0500
+++ gnome-pilot-2.0.10/capplet/gnome-pilot-pdialog.c 2004-08-12 00:04:01.112630424 -0500
@@ -135,15 +135,15 @@
priv->xml = glade_xml_new (GLADEDATADIR "/gpilotd-capplet.glade", "PilotSettings", NULL);
if (!priv->xml) {
g_message ("gnome-pilot-pdialog init(): Could not load the Glade XML file!");
- goto error;
+ return;
}
if (!get_widgets (gppd)) {
g_message ("gnome-pilot-pdialog init(): Could not find all widgets in the XML file!");
- goto error;
+ return;
}
- error:
+
}
Files gnome-pilot-2.0.10.orig/capplet/gnome-pilot-watermark.png and gnome-pilot-2.0.10/capplet/gnome-pilot-watermark.png differ
|