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
3cede8c2
Commit
3cede8c2
authored
Feb 27, 2014
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fast curve open misbehaviour when not initialized fix
parent
19f7370f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
0 deletions
+15
-0
src/msg/rt/src/rt_xnav_msg.msg
src/msg/rt/src/rt_xnav_msg.msg
+1
-0
xtt/lib/xtt/gtk/xtt_fast_gtk.cpp
xtt/lib/xtt/gtk/xtt_fast_gtk.cpp
+3
-0
xtt/lib/xtt/src/xtt_fast.cpp
xtt/lib/xtt/src/xtt_fast.cpp
+7
-0
xtt/lib/xtt/src/xtt_xnav_command.cpp
xtt/lib/xtt/src/xtt_xnav_command.cpp
+4
-0
No files found.
src/msg/rt/src/rt_xnav_msg.msg
View file @
3cede8c2
...
...
@@ -73,4 +73,5 @@ filecorrupt <File is corrupt> /error
notcollectw <Not collect window> /error
noclassgraph <No classgraph found> /error
notauthorized <Not authorized for this operation> /error
novalidcurve <No valid curve found> /error
xtt/lib/xtt/gtk/xtt_fast_gtk.cpp
View file @
3cede8c2
...
...
@@ -75,6 +75,9 @@ XttFastGtk::XttFastGtk( void *parent_ctx,
{
char
title
[
250
];
if
(
EVEN
(
*
sts
))
return
;
*
sts
=
XNAV__SUCCESS
;
if
(
strcmp
(
name
,
""
)
!=
0
)
...
...
xtt/lib/xtt/src/xtt_fast.cpp
View file @
3cede8c2
...
...
@@ -140,6 +140,13 @@ XttFast::XttFast( void *parent_ctx,
}
}
if
(
!
fast_cnt
)
{
*
sts
=
XNAV__NOVALIDCURVE
;
free
(
gcd
);
gcd
=
0
;
return
;
}
// Subscribe to object
strcpy
(
attr_name
,
fast_name
);
strcat
(
attr_name
,
".New"
);
...
...
xtt/lib/xtt/src/xtt_xnav_command.cpp
View file @
3cede8c2
...
...
@@ -2885,6 +2885,8 @@ static int xnav_open_func( void *client_data,
pwr_tAName
pinstance_str
;
void
*
basewidget
=
0
;
// Command is "OPEN GRAPH"
parent
=
ODD
(
dcli_get_qualifier
(
"/PARENT"
,
0
,
0
));
if
(
ODD
(
dcli_get_qualifier
(
"/FULLSCREEN"
,
0
,
0
)))
...
...
@@ -3217,6 +3219,8 @@ static int xnav_open_func( void *client_data,
pwr_tStatus
sts
;
pwr_tAttrRef
aref_vect
[
2
];
// Command is "OPEN MULTIVIEW"
/* Get the name qualifier */
if
(
ODD
(
dcli_get_qualifier
(
"dcli_arg2"
,
name_str
,
sizeof
(
name_str
))))
{
if
(
name_str
[
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