Ignore:
Timestamp:
Aug 3, 2008 11:08:42 PM (16 years ago)
Author:
dkearney
Message:

adjusting matlab and octave bindings to use the void* bindings dictionary instead of the lib* dictionary in hopes that we can phase out the lib* dictionary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lang/octave/rpLibChildrenByType.cc

    r135 r1085  
    7575                    (prevNodeIndex >= 0)    ) {
    7676
    77                 lib = getObject_Lib(libIndex);
    78                 prevLib = getObject_Lib(prevNodeIndex);
     77                lib = (RpLibrary*) getObject_Void(libIndex);
     78                prevLib = (RpLibrary*) getObject_Void(prevNodeIndex);
    7979
    8080                if (lib) {
     
    9393    }
    9494
    95     retval(0) = storeObject_Lib(newLib,prevNodeIndex);
     95    retval(0) = storeObject_Void((void*)newLib,prevNodeIndex);
    9696    retval(1) = err;
    9797    return retval;
Note: See TracChangeset for help on using the changeset viewer.