Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
Esteban Blanc
proview
Commits
89927788
Commit
89927788
authored
Nov 01, 2010
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Locale modified
parent
d1b222c0
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
2 deletions
+31
-2
profibus/exe/profinet_viewer/gtk/profinet_viewer_gtk.cpp
profibus/exe/profinet_viewer/gtk/profinet_viewer_gtk.cpp
+4
-0
sev/exe/sev_xtt/gtk/sev_xtt_gtk.cpp
sev/exe/sev_xtt/gtk/sev_xtt_gtk.cpp
+4
-0
src/doc/man/sv_se/man_opg.dat
src/doc/man/sv_se/man_opg.dat
+1
-1
src/lib/co/src/co_lng.cpp
src/lib/co/src/co_lng.cpp
+2
-0
wb/exe/wb/gtk/wb_gtk.cpp
wb/exe/wb/gtk/wb_gtk.cpp
+1
-1
wb/lib/wb/gtk/wb_utl_gtk.cpp
wb/lib/wb/gtk/wb_utl_gtk.cpp
+5
-0
xtt/exe/co_help/gtk/co_help_gtk.cpp
xtt/exe/co_help/gtk/co_help_gtk.cpp
+2
-0
xtt/exe/pwr_rtmon/gtk/pwr_rtmon_gtk.cpp
xtt/exe/pwr_rtmon/gtk/pwr_rtmon_gtk.cpp
+4
-0
xtt/exe/rt_statusmon/gtk/rt_statusmon_gtk.cpp
xtt/exe/rt_statusmon/gtk/rt_statusmon_gtk.cpp
+4
-0
xtt/exe/wb_ge/gtk/wb_ge_gtk.cpp
xtt/exe/wb_ge/gtk/wb_ge_gtk.cpp
+4
-0
No files found.
profibus/exe/profinet_viewer/gtk/profinet_viewer_gtk.cpp
View file @
89927788
...
...
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include "pwr.h"
...
...
@@ -58,6 +59,9 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
ctx
->
toplevel
=
(
GtkWidget
*
)
g_object_new
(
GTK_TYPE_WINDOW
,
"default-height"
,
100
,
"default-width"
,
100
,
...
...
sev/exe/sev_xtt/gtk/sev_xtt_gtk.cpp
View file @
89927788
...
...
@@ -20,6 +20,7 @@
#include <fstream>
#include <vector>
#include <locale.h>
#include <gtk/gtk.h>
#include "pwr.h"
...
...
@@ -75,6 +76,9 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
XttTblGtk
*
tbl
=
new
XttTblGtk
(
0
,
0
,
sevcli
,
items
,
itemcnt
);
tbl
->
close_cb
=
tbl_close_cb
;
...
...
src/doc/man/sv_se/man_opg.dat
View file @
89927788
...
...
@@ -1130,7 +1130,7 @@ att st
<h2>Villkorlig loggning
I 'Condition kan man ange ett digitalt attribut som styr loggningen. Loggning
sker enbart om Condition
Parameter är sann
.
sker enbart om Condition
attributet är sant
.
Man kan även ange ett uttryck i 'Condition. Uttrycket startar med 'expr' följt av
villkoret omgivet av parenteser. I villkoret kan man hämta upp attribut-värden med
...
...
src/lib/co/src/co_lng.cpp
View file @
89927788
...
...
@@ -510,6 +510,7 @@ void Lng::set( char *language)
}
setlocale
(
LC_ALL
,
lang_to_locale
(
l
));
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
}
pwr_tStatus
Lng
::
set
(
lng_eLanguage
language
)
...
...
@@ -530,6 +531,7 @@ pwr_tStatus Lng::set( lng_eLanguage language)
setlocale
(
LC_ALL
,
lang_to_locale
(
lang
));
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
return
1
;
}
...
...
wb/exe/wb/gtk/wb_gtk.cpp
View file @
89927788
...
...
@@ -94,7 +94,7 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_ALL
,
"en_US"
);
setlocale
(
LC_NUMERIC
,
"
en_US
"
);
setlocale
(
LC_NUMERIC
,
"
POSIX
"
);
setlocale
(
LC_TIME
,
"en_US"
);
new
WbGtk
(
argc
,
argv
);
...
...
wb/lib/wb/gtk/wb_utl_gtk.cpp
View file @
89927788
...
...
@@ -24,6 +24,7 @@
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <locale.h>
#include "pwr.h"
...
...
@@ -90,6 +91,10 @@ int wb_utl_gtk::create_mainwindow( int argc, char **argv)
if
(
!
gtk_initialized
)
{
gtk_init
(
&
argc
,
&
argv
);
gtk_initialized
=
1
;
setlocale
(
LC_ALL
,
"en_US"
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
}
toplevel
=
(
GtkWidget
*
)
g_object_new
(
GTK_TYPE_WINDOW
,
...
...
xtt/exe/co_help/gtk/co_help_gtk.cpp
View file @
89927788
...
...
@@ -23,6 +23,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <gtk/gtk.h>
...
...
@@ -52,6 +53,7 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
new
CoHelpGtk
(
argc
,
argv
,
&
sts
);
...
...
xtt/exe/pwr_rtmon/gtk/pwr_rtmon_gtk.cpp
View file @
89927788
...
...
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <gtk/gtk.h>
#include "pwr.h"
...
...
@@ -61,6 +62,9 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
// Create help window
CoXHelp
*
xhelp
=
new
CoXHelpGtk
(
0
,
0
,
xhelp_eUtility_Xtt
,
&
sts
);
CoXHelp
::
set_default
(
xhelp
);
...
...
xtt/exe/rt_statusmon/gtk/rt_statusmon_gtk.cpp
View file @
89927788
...
...
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <gtk/gtk.h>
#include "pwr.h"
...
...
@@ -91,6 +92,9 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
CoXHelp
*
xhelp
=
new
CoXHelpGtk
(
0
,
0
,
xhelp_eUtility_Xtt
,
&
sts
);
CoXHelp
::
set_default
(
xhelp
);
...
...
xtt/exe/wb_ge/gtk/wb_ge_gtk.cpp
View file @
89927788
...
...
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include "pwr.h"
...
...
@@ -62,6 +63,9 @@ int main( int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
setlocale
(
LC_NUMERIC
,
"POSIX"
);
setlocale
(
LC_TIME
,
"en_US"
);
toplevel
=
(
GtkWidget
*
)
g_object_new
(
GTK_TYPE_WINDOW
,
"default-height"
,
100
,
"default-width"
,
100
,
...
...
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