Kaydet (Commit) 1e9b5cf9 authored tarafından Enrico Tröger's avatar Enrico Tröger

Don't use file filters for the native Windows Save As dialog.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4913 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst e95326ea
......@@ -2,6 +2,7 @@
* src/win32.c:
Sort file filters for the native Windows file open dialog by name.
Don't use file filters for the native Windows Save As dialog.
2010-05-15 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
......
......@@ -133,6 +133,23 @@ static wchar_t *get_file_filters(void)
}
static wchar_t *get_file_filter_all_files(void)
{
guint len;
static wchar_t title[4096];
gchar *filter;
/* create meta file filter "All files" */
filter = g_strdup_printf("%s\0*\0", _("All files"));
len = strlen(_("All files")) + 3;
MultiByteToWideChar(CP_UTF8, 0, filter, len, title, sizeof(title));
g_free(filter);
return title;
}
static wchar_t *get_filters(gboolean project_files)
{
gchar *string;
......@@ -447,9 +464,9 @@ gchar *win32_show_document_save_as_dialog(GtkWindow *parent, const gchar *title,
#endif
of.hwndOwner = GDK_WINDOW_HWND(GTK_WIDGET(parent)->window);
of.lpstrFilter = get_file_filters();
of.lpstrFilter = get_file_filter_all_files();
of.lpstrCustomFilter = NULL;
of.nFilterIndex = GEANY_FILETYPES_NONE + 1;
of.nFilterIndex = 0;
of.lpstrFile = w_file;
of.nMaxFile = 2048;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment