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
170f695f
Commit
170f695f
authored
Sep 11, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ge dynamic Invisible works for Int64 and UInt64
parent
1ff2b380
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
xtt/lib/ge/src/ge_dyn.cpp
xtt/lib/ge/src/ge_dyn.cpp
+17
-2
No files found.
xtt/lib/ge/src/ge_dyn.cpp
View file @
170f695f
...
@@ -3037,8 +3037,23 @@ int GeInvisible::scan( grow_tObject object)
...
@@ -3037,8 +3037,23 @@ int GeInvisible::scan( grow_tObject object)
switch
(
a_typeid
)
{
switch
(
a_typeid
)
{
case
pwr_eType_Boolean
:
case
pwr_eType_Boolean
:
case
pwr_eType_Int32
:
case
pwr_eType_Int32
:
case
pwr_eType_UInt32
:
{
case
pwr_eType_UInt32
:
pwr_tBoolean
val
=
*
p
;
case
pwr_eType_Int64
:
case
pwr_eType_UInt64
:
{
pwr_tBoolean
val
;
switch
(
a_typeid
)
{
case
pwr_eType_Boolean
:
case
pwr_eType_Int32
:
case
pwr_eType_UInt32
:
val
=
*
p
;
break
;
case
pwr_eType_Int64
:
case
pwr_eType_UInt64
:
val
=
*
(
pwr_tUInt64
*
)
p
;
break
;
default:
;
}
if
(
!
first_scan
)
{
if
(
!
first_scan
)
{
if
(
old_value
==
val
&&
!
dyn
->
reset_invisible
)
{
if
(
old_value
==
val
&&
!
dyn
->
reset_invisible
)
{
...
...
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