LarsGit223 commented on this pull request.
+ * @return The filename + * + **/ +gchar *dialogs_open_workbench(void) +{ + gchar *utf8_filename = NULL; + GtkWidget *dialog; + GtkFileFilter *filter; + + dialog = gtk_file_chooser_dialog_new(_("Open workbench"), + GTK_WINDOW(wb_globals.geany_plugin->geany_data->main_widgets->window), GTK_FILE_CHOOSER_ACTION_OPEN, + _("_Cancel"), GTK_RESPONSE_CANCEL, + _("Open"), GTK_RESPONSE_ACCEPT, NULL); + + filter = gtk_file_filter_new ();
Sorry...did oversee that ones. I have read the coding guidelines and I try to follow them. Fixed.