lame temporary "fix" for file names which are not UTF-8 encoded

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33014 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-03-24 02:42:15 +00:00
parent f5a1953b34
commit 01b92baa9c
2 changed files with 14 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#include "wx/intl.h"
#include "wx/filename.h"
#include "wx/msgdlg.h"
#include "wx/log.h"
#include <gtk/gtk.h>
@ -44,6 +45,12 @@ static void gtk_filedialog_ok_callback(GtkWidget *widget, wxFileDialog *dialog)
int style = dialog->GetStyle();
gchar* text = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget));
wxString filename(wxGTK_CONV_BACK(text));
if ( filename.empty() )
{
// this is totally lame but better than silent error
wxLogWarning(_("This filename can't be used by wxWidgets because it contains invalid UTF-8 characters, please rename the file."));
return;
}
if ((style & wxSAVE) && (style & wxOVERWRITE_PROMPT))
{

View File

@ -21,6 +21,7 @@
#include "wx/intl.h"
#include "wx/filename.h"
#include "wx/msgdlg.h"
#include "wx/log.h"
#include <gtk/gtk.h>
@ -44,6 +45,12 @@ static void gtk_filedialog_ok_callback(GtkWidget *widget, wxFileDialog *dialog)
int style = dialog->GetStyle();
gchar* text = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget));
wxString filename(wxGTK_CONV_BACK(text));
if ( filename.empty() )
{
// this is totally lame but better than silent error
wxLogWarning(_("This filename can't be used by wxWidgets because it contains invalid UTF-8 characters, please rename the file."));
return;
}
if ((style & wxSAVE) && (style & wxOVERWRITE_PROMPT))
{