diff options
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/spell/pluma-spell-language-dialog.c | 2 | ||||
-rwxr-xr-x | plugins/time/pluma-time-plugin.c | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/spell/pluma-spell-language-dialog.c b/plugins/spell/pluma-spell-language-dialog.c index f0fdfcaa..464a0cd7 100755 --- a/plugins/spell/pluma-spell-language-dialog.c +++ b/plugins/spell/pluma-spell-language-dialog.c @@ -139,7 +139,9 @@ create_dialog (PlumaSpellLanguageDialog *dlg, NULL); gtk_window_set_title (GTK_WINDOW (dlg), _("Set language")); +#if !GTK_CHECK_VERSION (3, 0, 0) gtk_dialog_set_has_separator (GTK_DIALOG (dlg), FALSE); +#endif gtk_window_set_modal (GTK_WINDOW (dlg), TRUE); gtk_window_set_destroy_with_parent (GTK_WINDOW (dlg), TRUE); diff --git a/plugins/time/pluma-time-plugin.c b/plugins/time/pluma-time-plugin.c index a1b8e354..b275ea41 100755 --- a/plugins/time/pluma-time-plugin.c +++ b/plugins/time/pluma-time-plugin.c @@ -770,7 +770,9 @@ get_configure_dialog (PlumaTimePlugin *plugin) } gtk_window_set_resizable (GTK_WINDOW (dialog->dialog), FALSE); +#if !GTK_CHECK_VERSION (3, 0, 0) gtk_dialog_set_has_separator (GTK_DIALOG (dialog->dialog), FALSE); +#endif sf = get_selected_format (plugin); create_formats_list (dialog->list, sf, plugin); @@ -934,7 +936,9 @@ get_choose_format_dialog (GtkWindow *parent, gtk_window_group_add_window (wg, GTK_WINDOW (err_dialog)); gtk_window_set_resizable (GTK_WINDOW (err_dialog), FALSE); +#if !GTK_CHECK_VERSION (3, 0, 0) gtk_dialog_set_has_separator (GTK_DIALOG (err_dialog), FALSE); +#endif gtk_dialog_set_default_response (GTK_DIALOG (err_dialog), GTK_RESPONSE_OK); gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (err_dialog))), |