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
9c3050f4
Commit
9c3050f4
authored
Dec 17, 2015
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling fix
parent
e4c14514
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
16 deletions
+16
-16
opc/exe/opc_server/src/opc_server.cpp
opc/exe/opc_server/src/opc_server.cpp
+1
-1
otherio/lib/rt/src/os_linux/rt_io_m_epl_cnserver.c
otherio/lib/rt/src/os_linux/rt_io_m_epl_cnserver.c
+1
-1
otherio/lib/rt/src/os_linux/rt_io_m_epl_mn.c
otherio/lib/rt/src/os_linux/rt_io_m_epl_mn.c
+1
-1
wb/exe/wb/src/wb_main.cpp
wb/exe/wb/src/wb_main.cpp
+3
-3
wb/lib/wb/src/wb_foe.cpp
wb/lib/wb/src/wb_foe.cpp
+4
-4
wb/lib/wb/src/wb_wnav_command.cpp
wb/lib/wb/src/wb_wnav_command.cpp
+2
-2
wb/lib/wb/src/wb_wpkg.cpp
wb/lib/wb/src/wb_wpkg.cpp
+3
-3
wb/lib/wb/src/wb_wtt.cpp
wb/lib/wb/src/wb_wtt.cpp
+1
-1
No files found.
opc/exe/opc_server/src/opc_server.cpp
View file @
9c3050f4
...
...
@@ -277,7 +277,7 @@ int main()
sleep
(
10
);
}
else
{
fprintf
(
stderr
,
"Socket connection successful
l
: master socket = %d
\n
"
,
m
);
fprintf
(
stderr
,
"Socket connection successful: master socket = %d
\n
"
,
m
);
for
(
int
i
=
1
;;
i
++
)
{
s
=
soap_accept
(
&
soap
);
...
...
otherio/lib/rt/src/os_linux/rt_io_m_epl_cnserver.c
View file @
9c3050f4
...
...
@@ -838,7 +838,7 @@ static pwr_tStatus IoRackInit (
goto
Exit
;
}
errh_Success
(
"Powerlink init successful
l
"
);
errh_Success
(
"Powerlink init successful"
);
return
IO__SUCCESS
;
...
...
otherio/lib/rt/src/os_linux/rt_io_m_epl_mn.c
View file @
9c3050f4
...
...
@@ -366,7 +366,7 @@ static pwr_tStatus IoAgentInit (io_tCtx ctx, io_sAgent *ap) {
goto
Exit
;
}
errh_Success
(
"Powerlink init successful
l
"
);
errh_Success
(
"Powerlink init successful"
);
return
IO__SUCCESS
;
...
...
wb/exe/wb/src/wb_main.cpp
View file @
9c3050f4
...
...
@@ -215,11 +215,11 @@ void Wb::login_success( void *ctx)
pwr_tStatus
sts
;
char
msg
[
80
];
printf
(
"-- Successful
l
login
\n
"
);
printf
(
"-- Successful login
\n
"
);
sprintf
(
msg
,
"User %s logged in"
,
CoLogin
::
username
());
MsgWindow
::
message
(
'I'
,
msg
);
/* Successful
l
login, start the volume selection */
/* Successful login, start the volume selection */
if
(
CoLogin
::
privilege
()
&
pwr_mPrv_DevRead
)
{
...
...
@@ -526,7 +526,7 @@ void Wb::vsel_cancel()
void
Wb
::
login_cancel
(
void
*
ctx
)
{
printf
(
"-- Login canceled
\n
"
);
/* Not successful
l
login, exit */
/* Not successful login, exit */
exit
(
LOGIN__AUTHFAIL
);
}
wb/lib/wb/src/wb_foe.cpp
View file @
9c3050f4
...
...
@@ -442,7 +442,7 @@ void WFoe::activate_syntax()
BEEP
;
}
else
message
(
"Syntax successful
l
completion"
);
message
(
"Syntax successful completion"
);
}
if
(
show_execorder
)
...
...
@@ -3824,7 +3824,7 @@ int WFoe::change_mode( int new_mode)
sts
=
vldh_get_wind_modification
(
wind
,
&
vldh_mod
);
if
(
!
info
.
Empty
||
vldh_mod
)
{
/* Assume mode change is not successful
l
*/
/* Assume mode change is not successful */
wanted_function
=
VIEW
;
set_mode_button_state
(
VIEW
,
0
);
set_mode_button_state
(
EDIT
,
1
);
...
...
@@ -3973,7 +3973,7 @@ int WFoe::change_mode( int new_mode)
sts
=
vldh_get_wind_modification
(
wind
,
&
vldh_mod
);
if
(
!
info
.
Empty
||
vldh_mod
)
{
/* Assume mode change is not successful
l
*/
/* Assume mode change is not successful */
wanted_function
=
TRACE
;
set_mode_button_state
(
TRACE
,
0
);
set_mode_button_state
(
EDIT
,
1
);
...
...
@@ -4059,7 +4059,7 @@ int WFoe::change_mode( int new_mode)
sts
=
vldh_get_wind_modification
(
wind
,
&
vldh_mod
);
if
(
!
info
.
Empty
||
vldh_mod
)
{
/* Assume mode change is not successful
l
*/
/* Assume mode change is not successful */
wanted_function
=
SIMULATE
;
set_mode_button_state
(
SIMULATE
,
0
);
set_mode_button_state
(
EDIT
,
1
);
...
...
wb/lib/wb/src/wb_wnav_command.cpp
View file @
9c3050f4
...
...
@@ -5403,7 +5403,7 @@ static int wnav_check_func( void *client_data,
wnav
->
message
(
errorcount
?
'E'
:
'W'
,
msg
);
}
else
wnav
->
message
(
'I'
,
"Successful
l
syntax check, no errors or warnings found"
);
wnav
->
message
(
'I'
,
"Successful syntax check, no errors or warnings found"
);
}
else
{
if
(
EVEN
(
dcli_get_qualifier
(
"/NAME"
,
namestr
,
sizeof
(
namestr
))))
{
...
...
@@ -5429,7 +5429,7 @@ static int wnav_check_func( void *client_data,
wnav
->
message
(
errorcount
?
'E'
:
'W'
,
msg
);
}
else
wnav
->
message
(
'I'
,
"Successful
l
syntax check, no errors or warnings found"
);
wnav
->
message
(
'I'
,
"Successful syntax check, no errors or warnings found"
);
}
}
else
if
(
cdh_NoCaseStrncmp
(
arg1_str
,
"BOOTFILE"
,
strlen
(
arg1_str
))
==
0
)
{
...
...
wb/lib/wb/src/wb_wpkg.cpp
View file @
9c3050f4
...
...
@@ -117,7 +117,7 @@ void WPkg::activate_distribute()
wpkgnav
->
refresh_node
(
itemlist
[
i
]);
char
msg
[
80
];
sprintf
(
msg
,
"Distribution successful
l
to %s"
,
((
WItemPkgNode
*
)
itemlist
[
i
])
->
nodename
);
sprintf
(
msg
,
"Distribution successful to %s"
,
((
WItemPkgNode
*
)
itemlist
[
i
])
->
nodename
);
message
(
'I'
,
msg
);
flush
();
}
...
...
@@ -138,7 +138,7 @@ void WPkg::activate_distribute()
wpkgnav
->
refresh_node
(
itemlist
[
0
]);
char
msg
[
80
];
sprintf
(
msg
,
"Distribution successful
l
to %s"
,
((
WItemPkgNode
*
)
itemlist
[
0
])
->
nodename
);
sprintf
(
msg
,
"Distribution successful to %s"
,
((
WItemPkgNode
*
)
itemlist
[
0
])
->
nodename
);
message
(
'I'
,
msg
);
reset_cursor
();
}
...
...
@@ -146,7 +146,7 @@ void WPkg::activate_distribute()
set_clock_cursor
();
wb_pkg
::
copyPackage
(
((
WItemPkgPackage
*
)
itemlist
[
0
])
->
packagename
);
char
msg
[
80
];
sprintf
(
msg
,
"Distribution successful
l
of %s"
,
((
WItemPkgPackage
*
)
itemlist
[
0
])
->
packagename
);
sprintf
(
msg
,
"Distribution successful of %s"
,
((
WItemPkgPackage
*
)
itemlist
[
0
])
->
packagename
);
message
(
'I'
,
msg
);
reset_cursor
();
}
...
...
wb/lib/wb/src/wb_wtt.cpp
View file @
9c3050f4
...
...
@@ -1032,7 +1032,7 @@ void Wtt::activate_syntax()
message
(
'W'
,
msg
);
}
else
message
(
'I'
,
"Syntax check successful
l
"
);
message
(
'I'
,
"Syntax check successful"
);
}
void
Wtt
::
activate_find
()
...
...
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