@LarsGit223 commented on this pull request.


In workbench/src/dialogs.c:

> + **/
+gboolean dialogs_directory_settings(WB_PROJECT_DIR *directory)
+{
+	GtkWidget *w_file_patterns, *w_ignored_dirs_patterns, *w_ignored_file_patterns;
+	GtkWidget *dialog, *label, *content_area;
+	GtkWidget *vbox, *hbox, *hbox1, *table;
+	GtkDialogFlags flags;
+	gchar *file_patterns_old, *ignored_file_patterns_old, *ignored_dirs_patterns_old;
+	gboolean changed;
+
+	/* Create the widgets */
+	flags = GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT;
+	dialog = gtk_dialog_new_with_buttons (_("Directory settings"),
+										  GTK_WINDOW(wb_globals.geany_plugin->geany_data->main_widgets->window),
+										  flags,
+										  GTK_STOCK_CANCEL,

Maybe I have found it in some other code and then started to use it without changing the previous code. But I removed it because it is deprecated. There doesn't seem to be a replacement.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.