]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wxwindows/preferences_widgets.cpp: use wxL2U() (Thanks Anil).
authorGildas Bazin <gbazin@videolan.org>
Fri, 2 Jan 2004 13:30:17 +0000 (13:30 +0000)
committerGildas Bazin <gbazin@videolan.org>
Fri, 2 Jan 2004 13:30:17 +0000 (13:30 +0000)
modules/gui/wxwindows/preferences_widgets.cpp

index 66f497ce9f3064fe593b1ce4844e4ada6ddab5a2..956d956543307985186b05d4defd57cd562f8a75 100644 (file)
@@ -2,7 +2,7 @@
  * preferences_widgets.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: preferences_widgets.cpp,v 1.19 2003/12/30 18:29:26 zorglub Exp $
+ * $Id: preferences_widgets.cpp,v 1.20 2004/01/02 13:30:17 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *          Sigmund Augdal <sigmunau@idi.ntnu.no>
@@ -468,7 +468,7 @@ wxString StringListConfigControl::GetPszValue()
     int selected = combo->GetSelection();
     if( selected != -1 )
     {
-        return wxU((char *)combo->GetClientData( selected ));
+        return wxL2U((char *)combo->GetClientData( selected ));
     }
     return wxString();
 }