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
52900892
Commit
52900892
authored
Dec 13, 2011
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collection window fix
parent
944874d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
xtt/lib/xtt/src/xtt_xcolwind.cpp
xtt/lib/xtt/src/xtt_xcolwind.cpp
+14
-3
No files found.
xtt/lib/xtt/src/xtt_xcolwind.cpp
View file @
52900892
...
...
@@ -544,6 +544,8 @@ void XColWind::signal_insert_cb( void *ctx, void *parent_node,
unsigned
int
a_offset
;
unsigned
int
a_dim
;
pwr_tTid
a_tid
;
unsigned
int
a_flags
=
0
;
pwr_sAttrRef
ar
;
pwr_tStatus
sts
;
ItemCollect
*
item
;
char
*
s
;
...
...
@@ -587,11 +589,20 @@ void XColWind::signal_insert_cb( void *ctx, void *parent_node,
strcat
(
name
,
"."
);
strcat
(
name
,
trace_attr
);
sts
=
gdh_GetAttributeCharacteristics
(
name
,
&
a_type_id
,
&
a_size
,
&
a_offset
,
&
a_dim
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
name
,
&
ar
);
if
(
EVEN
(
sts
))
return
;
sts
=
gdh_GetAttributeCharAttrref
(
&
ar
,
&
a_type_id
,
&
a_size
,
&
a_offset
,
&
a_dim
);
if
(
EVEN
(
sts
))
return
;
sts
=
gdh_GetAttributeFlags
(
&
ar
,
&
a_flags
);
if
(
EVEN
(
sts
))
return
;
sts
=
gdh_GetAttrRefTid
(
&
ar
,
&
a_tid
);
if
(
EVEN
(
sts
))
return
;
item
=
new
ItemCollect
(
brow
,
aref
.
Objid
,
attr
,
NULL
,
flow_eDest_IntoLast
,
a_type_id
,
a_tid
,
a_size
,
0
,
0
);
flow_eDest_IntoLast
,
a_type_id
,
a_tid
,
a_size
,
a_flags
,
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