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/matlab/rpLibChildren.cc

    r162 r1085  
    5757         (childIndex >= 0)      ) {
    5858
    59         lib = getObject_Lib(libIndex);
     59        lib = (RpLibrary*) getObject_Void(libIndex);
    6060
    6161        if (childIndex > 0) {
    62             child = getObject_Lib(childIndex);
     62            child = (RpLibrary*) getObject_Void(childIndex);
    6363        }
    6464
    6565        if (lib) {
    6666            retLib = lib->children(path,child);
    67             retLibIndex = storeObject_Lib(retLib);
     67            retLibIndex = storeObject_Void((void*)retLib);
    6868            if (retLibIndex) {
    6969                err = 0;
Note: See TracChangeset for help on using the changeset viewer.