~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/gui/sci_gateway/c/sci_x_choice.c

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    if (VarType(1) ==  sci_matrix)
51
51
    {
52
52
        GetRhsVar(1, MATRIX_OF_DOUBLE_DATATYPE, &nbRowDefaultValues, &nbColDefaultValues, &defaultValuesAdr);
53
 
        defaultValues = getDoubleMatrixFromStack(defaultValuesAdr);
 
53
        defaultValues = stk(defaultValuesAdr);
54
54
 
55
55
        defaultValuesInt = (int *)MALLOC(nbRowDefaultValues * nbColDefaultValues * sizeof(int));
56
56
        for (K = 0; K < nbRowDefaultValues * nbColDefaultValues; K++)