]> git.pld-linux.org Git - packages/fbpanel.git/blame - fbpanel-cleanup.patch
- added menu_style patch (aka pretty menu ;), rel.4
[packages/fbpanel.git] / fbpanel-cleanup.patch
CommitLineData
82596e82 1diff -aurN fbpanel-4.1.orig/plugins/dclock.c fbpanel-4.1/plugins/dclock.c
2--- fbpanel-4.1.orig/plugins/dclock.c 2004-10-30 11:48:32.000000000 +0200
3+++ fbpanel-4.1/plugins/dclock.c 2005-05-02 19:03:48.000000000 +0200
4@@ -95,7 +95,7 @@
5 dc->cfmt = dc->tfmt = dc->action = 0;
6 while (get_line(p->fp, &s) != LINE_BLOCK_END) {
7 if (s.type == LINE_NONE) {
8- ERR( "image: illegal token %s\n", s.str);
9+ ERR( "dclock: illegal token %s\n", s.str);
10 goto error;
11 }
12 if (s.type == LINE_VAR) {
13@@ -106,11 +106,11 @@
14 else if (!g_ascii_strcasecmp(s.t[0], "Action"))
15 dc->action = g_strdup(s.t[1]);
16 else {
17- ERR( "image: unknown var %s\n", s.t[0]);
18+ ERR( "dclock: unknown var %s\n", s.t[0]);
19 goto error;
20 }
21 } else {
22- ERR( "image: illegal in this context %s\n", s.str);
23+ ERR( "dclock: illegal in this context %s\n", s.str);
24 goto error;
25 }
26 }
27diff -aurN fbpanel-4.1.orig/plugins/test.c fbpanel-4.1/plugins/test.c
28--- fbpanel-4.1.orig/plugins/test.c 2004-05-24 05:03:25.000000000 +0200
29+++ fbpanel-4.1/plugins/test.c 2005-05-02 19:03:48.000000000 +0200
30@@ -72,7 +72,7 @@
31 dc->delta = 1;
32 s.len = 256;
33 while (get_line(p->fp, &s) != LINE_BLOCK_END) {
34- ERR( "image: illegal in this context %s\n", s.str);
35+ ERR( "test: illegal in this context %s\n", s.str);
36 }
37 dc->main = p->panel->my_box_new(TRUE, 1);
38 gtk_widget_show(dc->main);
This page took 0.058422 seconds and 4 git commands to generate.