diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-05 04:54:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-05 04:54:56 +0800 |
commit | 54c88bfb012c3af321480eb685937052d2fa2292 (patch) | |
tree | 4b82e3d7cb16023d651d35a7cf6f751a7d052783 /embed | |
parent | 2c645faf84fb0a66d2bee7552e2cae3f617e4bf6 (diff) | |
download | gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.tar gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.tar.gz gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.tar.bz2 gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.tar.lz gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.tar.xz gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.tar.zst gsoc2013-epiphany-54c88bfb012c3af321480eb685937052d2fa2292.zip |
Same here.
2004-10-04 Christian Persch <chpe@cvs.gnome.org>
* embed/find-dialog.c: (find_dialog_init):
Same here.
Diffstat (limited to 'embed')
-rwxr-xr-x | embed/find-dialog.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/embed/find-dialog.c b/embed/find-dialog.c index a5fa4fe35..861372e47 100755 --- a/embed/find-dialog.c +++ b/embed/find-dialog.c @@ -249,7 +249,6 @@ sync_embed (FindDialog *dialog, GParamSpec *pspec, gpointer data) static void find_dialog_init (FindDialog *dialog) { - GdkPixbuf *icon; GtkWidget *window; dialog->priv = EPHY_FIND_DIALOG_GET_PRIVATE (dialog); @@ -267,12 +266,7 @@ find_dialog_init (FindDialog *dialog) window = ephy_dialog_get_control (EPHY_DIALOG (dialog), properties[WINDOW_PROP].id); - icon = gtk_widget_render_icon (window, - GTK_STOCK_FIND, - GTK_ICON_SIZE_MENU, - "find_dialog"); - gtk_window_set_icon (GTK_WINDOW(window), icon); - g_object_unref (icon); + gtk_window_set_icon_name (GTK_WINDOW (window), GTK_STOCK_FIND); g_signal_connect_object (dialog, "notify::embed", G_CALLBACK (sync_embed), NULL, 0); |