Browse Source

Fixed dropdown lists. they were returning descriptions on a SaveAll instead of config options.

pull/2/head
Derk-Jan Hartman 23 years ago
parent
commit
9a88dda145
  1. 4
      modules/gui/wxwindows/preferences_widgets.cpp

4
modules/gui/wxwindows/preferences_widgets.cpp

@ -2,7 +2,7 @@
* preferences_widgets.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: preferences_widgets.cpp,v 1.4 2003/10/20 12:25:22 gbazin Exp $
* $Id: preferences_widgets.cpp,v 1.5 2003/10/21 12:30:40 hartman Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Sigmund Augdal <sigmunau@idi.ntnu.no>
@ -244,7 +244,7 @@ ModuleConfigControl::~ModuleConfigControl()
wxString ModuleConfigControl::GetPszValue()
{
return combo->GetStringSelection();
return wxU( (char *)combo->GetClientData( combo->GetSelection() ));
}
/*****************************************************************************

Loading…
Cancel
Save