Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
04f16965
Commit
04f16965
authored
Mar 13, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3780 from StevenPuttemans:fix_locale_master
parents
133bd564
cef2cf28
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
0 deletions
+6
-0
window_QT.cpp
modules/highgui/src/window_QT.cpp
+1
-0
window_carbon.cpp
modules/highgui/src/window_carbon.cpp
+1
-0
window_cocoa.mm
modules/highgui/src/window_cocoa.mm
+2
-0
window_w32.cpp
modules/highgui/src/window_w32.cpp
+2
-0
No files found.
modules/highgui/src/window_QT.cpp
View file @
04f16965
...
...
@@ -464,6 +464,7 @@ static int icvInitSystem(int* c, char** v)
if
(
!
QApplication
::
instance
())
{
new
QApplication
(
*
c
,
v
);
setlocale
(
LC_NUMERIC
,
"C"
);
qDebug
()
<<
"init done"
;
...
...
modules/highgui/src/window_carbon.cpp
View file @
04f16965
...
...
@@ -146,6 +146,7 @@ CV_IMPL int cvInitSystem( int argc, char** argv )
}
wasInitialized
=
1
;
}
setlocale
(
LC_NUMERIC
,
"C"
);
return
0
;
}
...
...
modules/highgui/src/window_cocoa.mm
View file @
04f16965
...
...
@@ -156,6 +156,8 @@ CV_IMPL int cvInitSystem( int , char** )
//[application finishLaunching];
//atexit(icvCocoaCleanup);
setlocale(LC_NUMERIC,"C");
return 0;
}
...
...
modules/highgui/src/window_w32.cpp
View file @
04f16965
...
...
@@ -260,6 +260,8 @@ CV_IMPL int cvInitSystem( int, char** )
wasInitialized
=
1
;
}
setlocale
(
LC_NUMERIC
,
"C"
);
return
0
;
}
...
...
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