[gnome-panel/gtk3] panel-run-dialog: Use style-updated signal instead of style-set
- From: Carlos Garcia Campos <carlosgc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-panel/gtk3] panel-run-dialog: Use style-updated signal instead of style-set
- Date: Fri, 21 Jan 2011 17:41:04 +0000 (UTC)
commit b4deac9d217b4785d2c930a2deb2d94f5e4878d9
Author: Carlos Garcia Campos <carlosgc gnome org>
Date: Fri Jan 21 18:40:33 2011 +0100
panel-run-dialog: Use style-updated signal instead of style-set
gnome-panel/panel-run-dialog.c | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
---
diff --git a/gnome-panel/panel-run-dialog.c b/gnome-panel/panel-run-dialog.c
index 4a825e3..1105bba 100644
--- a/gnome-panel/panel-run-dialog.c
+++ b/gnome-panel/panel-run-dialog.c
@@ -1892,9 +1892,8 @@ pixmap_drag_data_get (GtkWidget *run_dialog,
}
static void
-panel_run_dialog_style_set (GtkWidget *widget,
- GtkStyle *prev_style,
- PanelRunDialog *dialog)
+panel_run_dialog_style_updated (GtkWidget *widget,
+ PanelRunDialog *dialog)
{
if (dialog->icon_path) {
char *icon_path;
@@ -1925,8 +1924,8 @@ panel_run_dialog_setup_pixmap (PanelRunDialog *dialog,
{
dialog->pixmap = PANEL_GTK_BUILDER_GET (gui, "icon_pixmap");
- g_signal_connect (dialog->pixmap, "style-set",
- G_CALLBACK (panel_run_dialog_style_set),
+ g_signal_connect (dialog->pixmap, "style-updated",
+ G_CALLBACK (panel_run_dialog_style_updated),
dialog);
g_signal_connect (dialog->pixmap, "screen-changed",
G_CALLBACK (panel_run_dialog_screen_changed),
@@ -1987,7 +1986,7 @@ static void
panel_run_dialog_disconnect_pixmap (PanelRunDialog *dialog)
{
g_signal_handlers_disconnect_by_func (dialog->pixmap,
- G_CALLBACK (panel_run_dialog_style_set),
+ G_CALLBACK (panel_run_dialog_style_updated),
dialog);
g_signal_handlers_disconnect_by_func (dialog->pixmap,
G_CALLBACK (panel_run_dialog_screen_changed),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]