@LarsGit223 commented on this pull request.
> + * The dialog lets the user choose an existing project file + * (filter *.geany or *). + * + * @return The filename + * + **/ +gchar *dialogs_add_project(void) +{ + gchar *utf8_filename = NULL; + GtkWidget *dialog; + GtkFileFilter *filter; + + dialog = gtk_file_chooser_dialog_new(_("Add project"), + GTK_WINDOW(wb_globals.geany_plugin->geany_data->main_widgets->window), GTK_FILE_CHOOSER_ACTION_OPEN, + _("_Cancel"), GTK_RESPONSE_CANCEL, + _("Add"), GTK_RESPONSE_ACCEPT, NULL);
Done.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.