Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
129a0b8e
Commit
129a0b8e
authored
Aug 13, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undo LC_NUMERIC change
parent
d70d55f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
modules/gui/wxwidgets/wxwidgets.cpp
modules/gui/wxwidgets/wxwidgets.cpp
+2
-3
src/libvlc.c
src/libvlc.c
+0
-3
No files found.
modules/gui/wxwidgets/wxwidgets.cpp
View file @
129a0b8e
...
...
@@ -332,9 +332,8 @@ bool Instance::OnInit()
locale
.
Init
(
wxLANGUAGE_DEFAULT
);
/* FIXME: The stream output mrl parsing uses ',' already so we want to
* keep the default '.' for floating point numbers.
* XXX (dionoea 13/08/2005) : This breaks prefs handling for floats
* setlocale( LC_NUMERIC, "C" ); */
* keep the default '.' for floating point numbers. */
setlocale
(
LC_NUMERIC
,
"C"
);
/* Load saved window settings */
p_intf
->
p_sys
->
p_window_settings
=
new
WindowSettings
(
p_intf
);
...
...
src/libvlc.c
View file @
129a0b8e
...
...
@@ -529,9 +529,6 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
/*
* Override default configuration with config file settings
*/
/* (dionoea 13/08/2005) : we need to load locale here in order to have
* coherent float encoding with subsequent SaveConfigFile calls */
setlocale
(
LC_NUMERIC
,
""
);
config_LoadConfigFile
(
p_vlc
,
NULL
);
/* Hack: insert the help module here */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment