]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wxwindows/open.cpp: compilation fix for unicode version.
authorGildas Bazin <gbazin@videolan.org>
Mon, 10 Nov 2003 18:21:35 +0000 (18:21 +0000)
committerGildas Bazin <gbazin@videolan.org>
Mon, 10 Nov 2003 18:21:35 +0000 (18:21 +0000)
modules/gui/wxwindows/open.cpp

index c7c54007e9c2995fe4ae150d8c868732cf0d4522..77d19d29ed368a43643d9ac1a30cd2667ac6de4c 100644 (file)
@@ -2,7 +2,7 @@
  * open.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: open.cpp,v 1.42 2003/11/10 00:14:05 gbazin Exp $
+ * $Id: open.cpp,v 1.43 2003/11/10 18:21:35 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -761,11 +761,11 @@ void OpenDialog::UpdateMRL( int i_access_method )
                 case CONFIG_ITEM_INTEGER:
                 case CONFIG_ITEM_BOOL:
                     mrltemp +=
-                        wxString::Format( "%i", control->GetIntValue() );
+                        wxString::Format( wxT("%i"), control->GetIntValue() );
                     break;
                 case CONFIG_ITEM_FLOAT:
                     mrltemp +=
-                        wxString::Format( "%f", control->GetFloatValue() );
+                        wxString::Format( wxT("%f"), control->GetFloatValue());
                     break;
                 }
             }