]> git.pld-linux.org Git - packages/emerald.git/blame - emerald-gtk+2_2_20.patch
- updated gettext BR
[packages/emerald.git] / emerald-gtk+2_2_20.patch
CommitLineData
04fe87dd
JK
1--- emerald-0.8.4/src/main.c.old 2010-03-29 19:49:30.420710030 -0700
2+++ emerald-0.8.4/src/main.c 2010-03-29 19:52:33.654024944 -0700
3@@ -3757,7 +3757,7 @@
4
5 static void hide_tooltip(void)
6 {
7- if (GTK_WIDGET_VISIBLE(tip_window))
8+ if (gtk_widget_get_visible(tip_window))
9 g_get_current_time(&tooltip_last_popdown);
10
11 gtk_widget_hide(tip_window);
12
13diff -urN emerald-0.8.4/libengine/themer.c emerald-0.8.4.new/libengine/themer.c
14--- emerald-0.8.4/libengine/themer.c 2009-10-13 20:56:23.000000000 -0400
15+++ emerald-0.8.4.new/libengine/themer.c 2010-03-10 01:20:03.046827674 -0500
16@@ -461,7 +461,7 @@
17 }
18 gdouble get_float(SettingItem * item)
19 {
20- if(!strcmp(GTK_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
21+ if(!strcmp(G_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
22 return gtk_spin_button_get_value((GtkSpinButton *)item->widget);
23 }
24 else {
25@@ -647,7 +647,7 @@
26 }
27 void set_float(SettingItem * item, gdouble f)
28 {
29- if(!strcmp(GTK_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
30+ if(!strcmp(G_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
31 gtk_spin_button_set_value((GtkSpinButton *)item->widget, f);
32 }
33 else {
This page took 0.07117 seconds and 4 git commands to generate.