Ignore:
Timestamp:
Dec 3, 2006, 9:54:12 PM (19 years ago)
Author:
cinc
Message:

Improvements to WPFolder and fixes to related classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/desktop/class_c/wpfilesystem.c

    r141 r146  
    4545#include "wpfilesystem.ih"
    4646
    47 NOM_Scope void NOMLINK impl_WPFileSystem_tstSetFullPath(WPFileSystem* nomSelf, const CORBA_char * fullPath, CORBA_Environment *ev)
     47NOM_Scope void NOMLINK impl_WPFileSystem_tstSetFullPath(WPFileSystem* nomSelf, const CORBA_char * fullPath,
     48                                                        CORBA_Environment *ev)
    4849{
    49 /* WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); */
     50  WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf);
    5051
    5152  nomPrintf("thePath: ---> %s \n", fullPath);
     53  _pszFullPath=fullPath;
    5254}
    5355
     56NOM_Scope PNOMPath NOMLINK impl_WPFileSystem_wpQueryRealName(WPFileSystem* nomSelf, const CORBA_boolean bFullPath,
     57                                                             CORBA_Environment *ev)
     58{
     59  WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf);
     60  PNOMPath nomRetval=NOMPathNew();
     61 
     62  NOMPath_assignCString(nomRetval, _pszFullPath, ev);
     63
     64  return nomRetval;
     65}
     66
Note: See TracChangeset for help on using the changeset viewer.