LarsGit223 commented on this pull request.
+/** Shows the dialog "Add directory".
+ * + * The dialog lets the user choose an existing folder. + * + * @return The filename + * + **/ +gchar *dialogs_add_directory(WB_PROJECT *project) +{ + gchar *utf8_filename = NULL; + GtkWidget *dialog; + + dialog = gtk_file_chooser_dialog_new(_("Add directory"), + GTK_WINDOW(wb_globals.geany_plugin->geany_data->main_widgets->window), GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, + _("_Cancel"), GTK_RESPONSE_CANCEL, + _("Add"), GTK_RESPONSE_ACCEPT, NULL);
Done.