diff options
author | Pablo Barciela <[email protected]> | 2018-02-15 01:45:55 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-03-16 18:03:09 +0100 |
commit | 58e7446290d78e0744a5193e22bfa300e6737829 (patch) | |
tree | 9d1667d6605e6ca2b469f3ddf877f1256d635862 /shell/ev-annotation-properties-dialog.c | |
parent | 005d88500dc47f285d83fc5451cd5cea0e8c14a3 (diff) | |
download | atril-58e7446290d78e0744a5193e22bfa300e6737829.tar.bz2 atril-58e7446290d78e0744a5193e22bfa300e6737829.tar.xz |
avoid deprecated GtkStock
Diffstat (limited to 'shell/ev-annotation-properties-dialog.c')
-rw-r--r-- | shell/ev-annotation-properties-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-annotation-properties-dialog.c b/shell/ev-annotation-properties-dialog.c index dc51feea..9406131d 100644 --- a/shell/ev-annotation-properties-dialog.c +++ b/shell/ev-annotation-properties-dialog.c @@ -137,8 +137,8 @@ ev_annotation_properties_dialog_init (EvAnnotationPropertiesDialog *annot_dialog gtk_window_set_destroy_with_parent (GTK_WINDOW (annot_dialog), TRUE); gtk_container_set_border_width (GTK_CONTAINER (annot_dialog), 5); gtk_dialog_add_buttons (dialog, - GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, - GTK_STOCK_APPLY, GTK_RESPONSE_APPLY, + "gtk-close", GTK_RESPONSE_CLOSE, + "gtk-apply", GTK_RESPONSE_APPLY, NULL); gtk_dialog_set_default_response (dialog, GTK_RESPONSE_APPLY); |