[gnome-db] Bug 12795 solved! (po info header in some buttons)
- From: Gonzalo Paniagua Javier <gonzalo torresquevedo hispalinux es>
- To: Gnome-db list <gnome-db-list gnome org>
- Subject: [gnome-db] Bug 12795 solved! (po info header in some buttons)
- Date: Tue, 16 Oct 2001 18:18:12 +0200
Well, here's a patch to solve bug #12795. May be there's a more
sofisticated way but this one works fine.
--- gnome-db/lib/gnome-db-dataset.c Tue Oct 16 18:14:17 2001
+++ gnome-db-modif/lib/gnome-db-dataset.c Tue Oct 16 18:13:08 2001
@@ -133,28 +133,28 @@
gtk_container_add(GTK_CONTAINER(frame), table);
/* create top toolbar */
- dset->first_btn = gnome_db_new_button_widget_with_pixmap("", GNOME_STOCK_MENU_FIRST);
+ dset->first_btn = gnome_db_new_button_widget_with_pixmap(" ", GNOME_STOCK_MENU_FIRST);
gtk_signal_connect(GTK_OBJECT(dset->first_btn),
"clicked",
GTK_SIGNAL_FUNC(go_first_cb),
(gpointer) dset);
gtk_table_attach(GTK_TABLE(table), dset->first_btn, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 3, 3);
- dset->previous_btn = gnome_db_new_button_widget_with_pixmap("", GNOME_STOCK_MENU_BACK);
+ dset->previous_btn = gnome_db_new_button_widget_with_pixmap(" ", GNOME_STOCK_MENU_BACK);
gtk_signal_connect(GTK_OBJECT(dset->previous_btn),
"clicked",
GTK_SIGNAL_FUNC(go_previous_cb),
(gpointer) dset);
gtk_table_attach(GTK_TABLE(table), dset->previous_btn, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 3, 3);
- dset->next_btn = gnome_db_new_button_widget_with_pixmap("", GNOME_STOCK_MENU_FORWARD);
+ dset->next_btn = gnome_db_new_button_widget_with_pixmap(" ", GNOME_STOCK_MENU_FORWARD);
gtk_signal_connect(GTK_OBJECT(dset->next_btn),
"clicked",
GTK_SIGNAL_FUNC(go_next_cb),
(gpointer) dset);
gtk_table_attach(GTK_TABLE(table), dset->next_btn, 2, 3, 0, 1, GTK_FILL, GTK_FILL, 3, 3);
- dset->last_btn = gnome_db_new_button_widget_with_pixmap("", GNOME_STOCK_MENU_LAST);
+ dset->last_btn = gnome_db_new_button_widget_with_pixmap(" ", GNOME_STOCK_MENU_LAST);
gtk_signal_connect(GTK_OBJECT(dset->last_btn),
"clicked",
GTK_SIGNAL_FUNC(go_last_cb),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]