diff options
author | infirit <[email protected]> | 2014-05-19 14:52:18 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-05-19 18:37:37 +0200 |
commit | 51291bf1b29004ea4703845fc127cc1a4468b092 (patch) | |
tree | a6280641c96a58b9872e6c4e7835d5dd313667ca /plugins/spell/pluma-spell-checker-dialog.c | |
parent | 53be5f994d2c52142debdfdaf089ae077389cfbd (diff) | |
download | pluma-51291bf1b29004ea4703845fc127cc1a4468b092.tar.bz2 pluma-51291bf1b29004ea4703845fc127cc1a4468b092.tar.xz |
Replace deprecated gtk widget function
The replacement functions are available since 2.18
GTK_WIDGET_HAS_FOCUS -> gtk_widget_has_focus
GTK_WIDGET_VISIBLE -> gtk_widget_get_visible
GTK_WIDGET_SET_FLAGS -> gtk_widget_set_*
Diffstat (limited to 'plugins/spell/pluma-spell-checker-dialog.c')
-rwxr-xr-x | plugins/spell/pluma-spell-checker-dialog.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/spell/pluma-spell-checker-dialog.c b/plugins/spell/pluma-spell-checker-dialog.c index b41feaf7..a0d0b068 100755 --- a/plugins/spell/pluma-spell-checker-dialog.c +++ b/plugins/spell/pluma-spell-checker-dialog.c @@ -291,11 +291,7 @@ create_dialog (PlumaSpellCheckerDialog *dlg, gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); /* Set default button */ -#if GTK_CHECK_VERSION (3, 0, 0) gtk_widget_set_can_default (dlg->change_button, TRUE); -#else - GTK_WIDGET_SET_FLAGS (dlg->change_button, GTK_CAN_DEFAULT); -#endif gtk_widget_grab_default (dlg->change_button); gtk_entry_set_activates_default (GTK_ENTRY (dlg->word_entry), TRUE); |