summaryrefslogtreecommitdiff
path: root/components/music
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-08 21:46:07 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-08 21:46:07 +0000
commit3f4aeca2fa2480601db11310553e856dcc0ce217 (patch)
tree89354638305c22e50ecdb9322002d3f5fd22521f /components/music
parent25f9e45ba5c66487bda07e685cfec0cff96965d3 (diff)
downloadnautilus-3f4aeca2fa2480601db11310553e856dcc0ce217.tar.gz
Remove Nautilus 1 news. This file is empty for now. Add some renaming
* NEWS: Remove Nautilus 1 news. This file is empty for now. * RENAMING: Add some renaming ideas. * TODO: Add a tiny porting to-do list. I should take that survey of GNOME2_CONVERSION_COMPLETE that Havoc did and put it in here. * TRADEMARK_NOTICE: Removed this file. Eazel logo isn't in here any more. * Makefile.am: Remove TRADEMARK_NOTICE. * components/help/hyperbola-nav-index.c: * components/mozilla/nautilus-mozilla-content-view.c: * libnautilus-private/nautilus-authn-manager.c: * libnautilus-private/nautilus-file-operations-progress.c: * libnautilus-private/nautilus-file-operations-progress.h: * libnautilus-private/nautilus-file-operations.c: * libnautilus-private/nautilus-icon-dnd.c: * libnautilus-private/nautilus-program-chooser.c: * libnautilus-private/nautilus-program-chooser.h: * libnautilus-private/nautilus-program-choosing.c: * src/file-manager/fm-directory-view.c: * src/file-manager/fm-search-list-view.c: * src/file-manager/nautilus-indexing-info.c: * src/nautilus-about.c: * src/nautilus-about.h: * src/nautilus-application.c: * src/nautilus-bookmarks-window.c: * src/nautilus-location-bar.c: * src/nautilus-property-browser.c: * src/nautilus-shell.c: * src/nautilus-window-menus.c: * src/nautilus-window.c: First cut at converting to GtkDialog from GnomeDialog.
Diffstat (limited to 'components/music')
-rw-r--r--components/music/configure.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/music/configure.c b/components/music/configure.c
index 4b41ecfe8..9206fb2b0 100644
--- a/components/music/configure.c
+++ b/components/music/configure.c
@@ -717,14 +717,14 @@ void mpg123_configure(void)
gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5);
gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
- ok = gtk_button_new_with_label(_("Ok"));
+ ok = gtk_button_new_from_stock (GTK_STOCK_OK);
gtk_signal_connect(GTK_OBJECT(ok), "clicked", G_CALLBACK(mpg123_configurewin_ok), NULL);
GTK_WIDGET_SET_FLAGS(ok, GTK_CAN_DEFAULT);
gtk_box_pack_start(GTK_BOX(bbox), ok, TRUE, TRUE, 0);
gtk_widget_show(ok);
gtk_widget_grab_default(ok);
- cancel = gtk_button_new_with_label(_("Cancel"));
+ cancel = gtk_button_new_from_stock (GTK_STOCK_CANCEL);
gtk_signal_connect_object(GTK_OBJECT(cancel), "clicked", G_CALLBACK(gtk_widget_destroy), GTK_OBJECT(mpg123_configurewin));
GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT);
gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0);