Changeset 141 for trunk/desktop/class_c
- Timestamp:
- Dec 3, 2006, 12:55:29 PM (19 years ago)
- Location:
- trunk/desktop/class_c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/class_c/wpfilesystem.c
r98 r141 39 39 #include <os2.h> 40 40 41 #include "nom.h" 42 #include "nomtk.h" 43 41 44 #include <string.h> 42 45 #include "wpfilesystem.ih" … … 46 49 /* WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); */ 47 50 51 nomPrintf("thePath: ---> %s \n", fullPath); 48 52 } 49 53 -
trunk/desktop/class_c/wpfolder.c
r127 r141 253 253 case OPEN_DEFAULT: 254 254 { 255 WPFolder_wpCreateFolderWindow(nomSelf, ev); 255 256 #if 0 256 257 char path[CCHMAXPATH]; … … 334 335 335 336 336 337 338 337 NOM_Scope void NOMLINK impl_WPFolder_tstSetFolderPath(WPFolder* nomSelf, const CORBA_char * thePath, CORBA_Environment *ev) 338 { 339 /* WPFolderData* nomThis=WPFolderGetData(nomSelf); */ 340 341 342 } 343 344 345 346 -
trunk/desktop/class_c/wpobject.c
r122 r141 124 124 //g_mutex_free(_gObjectMutex); 125 125 DosCloseMutexSem(_gObjectMutex); 126 WPObject_nomUninit_parent( nomSelf,ev);126 WPObject_nomUninit_parent((NOMObject*)nomSelf, ev); 127 127 } 128 128 129 129 NOM_Scope void NOMLINK impl_WPObject_wpInitData(WPObject* nomSelf, CORBA_Environment *ev) 130 130 { 131 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ 132 131 WPObjectData* nomThis=WPObjectGetData(nomSelf); 132 133 /* Make sure a title exists (even if it's an empty string */ 134 _pnomStringTitle=NOMStringNew(); 133 135 } 134 136 … … 195 197 return DosReleaseMutexSem(_gObjectMutex); 196 198 } 199 200 NOM_Scope PNOMString NOMLINK impl_WPObject_wpSetTitle(WPObject* nomSelf, const PNOMString pnomStrNewTitle, CORBA_Environment *ev) 201 { 202 WPObjectData* nomThis=WPObjectGetData(nomSelf); 203 204 NOMString_assignString(_pnomStringTitle, pnomStrNewTitle, ev); 205 206 return _pnomStringTitle; 207 } 208 209 NOM_Scope PNOMString NOMLINK impl_WPObject_wpQueryTitle(WPObject* nomSelf, CORBA_Environment *ev) 210 { 211 WPObjectData* nomThis=WPObjectGetData(nomSelf); 212 213 return _pnomStringTitle; 214 } 215
Note:
See TracChangeset
for help on using the changeset viewer.