projects
/
scilab.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
bug #13397 fixed - saveGui() returned an undocumented boolean parameter (success...
[scilab.git]
/
scilab
/
modules
/
gui
/
sci_gateway
/
cpp
/
sci_saveGui.cpp
diff --git
a/scilab/modules/gui/sci_gateway/cpp/sci_saveGui.cpp
b/scilab/modules/gui/sci_gateway/cpp/sci_saveGui.cpp
index
5348208
..
f377179
100644
(file)
--- a/
scilab/modules/gui/sci_gateway/cpp/sci_saveGui.cpp
+++ b/
scilab/modules/gui/sci_gateway/cpp/sci_saveGui.cpp
@@
-138,8
+138,7
@@
int sci_saveGui(char *fname, unsigned long fname_len)
}
free(ret);
- createScalarBoolean(pvApiCtx, iRhs + 1, 1);
- AssignOutputVariable(pvApiCtx, 1) = iRhs + 1;
+ AssignOutputVariable(pvApiCtx, 1) = 0;
ReturnArguments(pvApiCtx);
return 0;
}