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
61bf56ee
Commit
61bf56ee
authored
Feb 18, 2003
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
120ea453
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
10 deletions
+12
-10
wb/lib/wb/src/wb_ldh.cpp
wb/lib/wb/src/wb_ldh.cpp
+1
-1
wb/lib/wb/src/wb_object.cpp
wb/lib/wb/src/wb_object.cpp
+10
-8
wb/lib/wb/src/wb_wblnode.cpp
wb/lib/wb/src/wb_wblnode.cpp
+1
-1
No files found.
wb/lib/wb/src/wb_ldh.cpp
View file @
61bf56ee
...
...
@@ -592,7 +592,7 @@ ldh_GetObjectBuffer(ldh_tSession session, pwr_tOid oid, char *bname,
*
value
=
(
char
*
)
calloc
(
1
,
a
.
size
());
*
size
=
a
.
size
();
a
.
value
(
value
);
a
.
value
(
*
value
);
*
bufferclass
=
a
.
bufferClass
();
return
LDH__SUCCESS
;
}
...
...
wb/lib/wb/src/wb_object.cpp
View file @
61bf56ee
...
...
@@ -272,27 +272,29 @@ wb_attribute wb_object::attribute()
check
();
pwr_tStatus
sts
=
LDH__SUCCESS
;
wb_adrep
*
adrep
=
m_orep
->
attribute
(
&
sts
);
wb_attribute
a
(
sts
,
m_orep
,
adrep
);
wb_attribute
a
(
sts
,
m_orep
);
return
a
;
}
wb_attribute
wb_object
::
attribute
(
const
char
*
name
)
wb_attribute
wb_object
::
attribute
(
const
char
*
a
name
)
{
check
();
pwr_tStatus
sts
=
LDH__SUCCESS
;
wb_adrep
*
adrep
=
m_orep
->
attribute
(
&
sts
,
name
);
wb_attribute
a
(
sts
,
m_orep
,
adrep
);
wb_attribute
a
(
sts
,
m_orep
,
aname
);
return
a
;
}
wb_attribute
wb_object
::
attribute
(
const
char
*
bname
,
const
char
*
aname
)
// Fix
wb_attribute
wb_object
::
attribute
(
const
char
*
bname
,
const
char
*
aname
)
{
wb_attribute
a
;
return
a
;
check
();
pwr_tStatus
sts
=
LDH__SUCCESS
;
wb_attribute
a
(
sts
,
m_orep
,
bname
,
aname
);
return
a
;
}
/* Object SigChanCon $ObjXRef 2
...
...
wb/lib/wb/src/wb_wblnode.cpp
View file @
61bf56ee
...
...
@@ -608,7 +608,7 @@ void wb_wblnode::buildBuffer( ref_wblnode classdef, ref_wblnode objbodydef,
return
;
}
a_size
=
((
pwr_sBuffer
*
)
rbody
)
->
Info
.
Offset
=
a_elements
*
rsize
;
a_size
=
((
pwr_sBuffer
*
)
rbody
)
->
Info
.
Size
=
a_elements
*
rsize
;
a_offset
=
((
pwr_sBuffer
*
)
rbody
)
->
Info
.
Offset
=
*
boffset
;
((
pwr_sBuffer
*
)
rbody
)
->
Info
.
ParamIndex
=
*
bindex
;
*
boffset
+=
a_size
;
...
...
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