Use conversion class in native GTK+ file dialog.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -44,7 +44,7 @@ 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));
|
||||
wxString filename = wxConvFileName->cMB2WX( text );
|
||||
if ( filename.empty() )
|
||||
{
|
||||
// this is totally lame but better than silent error
|
||||
|
@@ -44,7 +44,7 @@ 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));
|
||||
wxString filename = wxConvFileName->cMB2WX( text );
|
||||
if ( filename.empty() )
|
||||
{
|
||||
// this is totally lame but better than silent error
|
||||
|
Reference in New Issue
Block a user