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
73a94d98
Commit
73a94d98
authored
Dec 17, 2003
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mismatch in ldhses and ldhwb fixed
parent
555f7ba5
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
67 additions
and
47 deletions
+67
-47
wb/lib/wb/src/wb_wnav.cpp
wb/lib/wb/src/wb_wnav.cpp
+2
-1
wb/lib/wb/src/wb_wnav.h
wb/lib/wb/src/wb_wnav.h
+1
-1
wb/lib/wb/src/wb_wnav_command.cpp
wb/lib/wb/src/wb_wnav_command.cpp
+60
-41
wb/lib/wb/src/wb_wtt.cpp
wb/lib/wb/src/wb_wtt.cpp
+4
-4
No files found.
wb/lib/wb/src/wb_wnav.cpp
View file @
73a94d98
...
...
@@ -2668,9 +2668,10 @@ int WNav::menu_tree_search_children( char *name, wnav_sMenu *child_list,
return
WNAV__NOTFOUND
;
}
int
WNav
::
volume_attached
(
ldh_tSesContext
ldhsession
,
int
pop
)
int
WNav
::
volume_attached
(
ldh_t
WBContext
wbcontext
,
ldh_t
SesContext
ldhsession
,
int
pop
)
{
ldhses
=
ldhsession
;
wbctx
=
wbcontext
;
wccm_store_ldhses
(
(
void
*
)
this
,
ldhses
);
if
(
window_type
!=
wnav_eWindowType_No
)
show_volume
(
pop
);
...
...
wb/lib/wb/src/wb_wnav.h
View file @
73a94d98
...
...
@@ -308,7 +308,7 @@ class WNav {
int
open_plc
(
pwr_tOid
oid
);
int
is_editmode
()
{
return
editmode
;};
void
set_editmode
(
int
value
);
int
volume_attached
(
ldh_tSesContext
ldhsession
,
int
pop
);
int
volume_attached
(
ldh_t
WBContext
wbcontext
,
ldh_t
SesContext
ldhsession
,
int
pop
);
int
volume_detached
();
void
ldh_event
(
ldh_sEvent
*
event
);
void
ldh_refresh
(
pwr_tObjid
new_open
);
...
...
wb/lib/wb/src/wb_wnav_command.cpp
View file @
73a94d98
This diff is collapsed.
Click to expand it.
wb/lib/wb/src/wb_wtt.cpp
View file @
73a94d98
...
...
@@ -778,8 +778,8 @@ static int wtt_attach_volume_cb(
(
void
*
)
wtt
,
wtt_ldh_other_session_cb
);
wtt
->
wnav
->
volume_attached
(
wtt
->
ldhses
,
pop
);
wtt
->
wnavnode
->
volume_attached
(
wtt
->
ldhses
,
pop
);
wtt
->
wnav
->
volume_attached
(
wtt
->
wbctx
,
wtt
->
ldhses
,
pop
);
wtt
->
wnavnode
->
volume_attached
(
wtt
->
wbctx
,
wtt
->
ldhses
,
pop
);
wtt
->
palette
->
session_opened
(
wtt
->
ldhses
,
NULL
);
return
1
;
...
...
@@ -3599,8 +3599,8 @@ Wtt::Wtt(
if
(
wbctx
&&
volid
)
{
wnav
->
volume_attached
(
ldhses
,
0
);
wnavnode
->
volume_attached
(
ldhses
,
0
);
wnav
->
volume_attached
(
wbctx
,
ldhses
,
0
);
wnavnode
->
volume_attached
(
wbctx
,
ldhses
,
0
);
}
menu_setup
();
*
status
=
1
;
...
...
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