Browse Source

Dimitar Zhekov <jimmy@is-vn.bg>:

xfce update 2/2


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1870 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Dimitar Zhekov 21 years ago
parent
commit
f58ee05c7c
4 changed files with 20 additions and 21 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +15
    -17
      package/xfce4/xfce4-panel/isnull.patch
  3. +2
    -2
      package/xfce4/xfce4-systray/xfce4-systray.desc
  4. +2
    -2
      package/xfce4/xfce4-trigger-launcher/xfce4-trigger-launcher.desc

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -2,6 +2,7 @@
*) 2003-11-28 (2.0.0-rc3 - 2.0.0-rc4)
- Juergen Sawinski: fixed priority of nikolaus/gnupod-perlmods
- Dimitar Zhekov: xfce upgrade 2/2
*) 2003-11-27 (2.0.0-rc3 - 2.0.0-rc4)

+ 15
- 17
package/xfce4/xfce4-panel/isnull.patch

@ -20,22 +20,20 @@
#
# --- ROCK-COPYRIGHT-NOTE-END ---
--- ./panel/xfce_support.c.orig 2003-08-07 22:15:03.000000000 +0300
+++ ./panel/xfce_support.c 2003-11-09 16:55:51.000000000 +0200
@@ -955,10 +955,13 @@
static gboolean
delayed_exec(ActionCommand *command)
--- ./panel/xfce_support.c.orig 2003-11-18 12:43:55.000000000 +0200
+++ ./panel/xfce_support.c 2003-11-18 12:44:02.000000000 +0200
@@ -982,6 +982,7 @@
void
exec_cmd (const char *cmd, gboolean in_terminal, gboolean use_sn)
{
- real_exec_cmd(command->cmd, command->in_terminal, command->use_sn,
- command->silent);
+ if (command->cmd != NULL)
+ {
+ real_exec_cmd(command->cmd, command->in_terminal, command->use_sn,
+ command->silent);
+ g_free(command->cmd);
+ }
+ g_return_if_fail (cmd != NULL);
schedule_exec(cmd, in_terminal, use_sn, FALSE);
}
- g_free(command->cmd);
g_free(command);
return(FALSE);
@@ -989,5 +990,6 @@
void
exec_cmd_silent (const char *cmd, gboolean in_terminal, gboolean use_sn)
{
+ g_return_if_fail (cmd != NULL);
schedule_exec(cmd, in_terminal, use_sn, TRUE);
}

+ 2
- 2
package/xfce4/xfce4-systray/xfce4-systray.desc

@ -32,7 +32,7 @@
[L] OpenSource
[S] Stable
[V] 4.0.0
[V] 4.0.1
[P] X -----5---9 979.000
[D] 3014585680 xfce4-systray-4.0.0.tar.gz http://www.xfce.org/archive/xfce-4.0.0/src/
[D] 1636013731 xfce4-systray-4.0.1.tar.gz http://www.xfce.org/archive/xfce-4.0.1/src/

+ 2
- 2
package/xfce4/xfce4-trigger-launcher/xfce4-trigger-launcher.desc

@ -33,7 +33,7 @@
[L] BSD
[S] Stable
[V] 4.0.0
[V] 4.0.1
[P] X -----5---9 983.000
[D] 2141839271 xfce4-trigger-launcher-4.0.0.tar.gz http://www.xfce.org/archive/xfce-4.0.0/src/
[D] 794698924 xfce4-trigger-launcher-4.0.1.tar.gz http://www.xfce.org/archive/xfce-4.0.1/src/

Loading…
Cancel
Save