Changeset 326 for trunk/nom/class_c/nomobj.c
- Timestamp:
- Apr 9, 2008, 10:22:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomobj.c
r255 r326 41 41 #endif 42 42 43 #define INCL_DOS 44 #include <os2.h> 43 #ifdef __OS2__ 44 # define INCL_DOS 45 # include <os2.h> 46 #endif /* __OS2__ */ 47 45 48 #include <string.h> 46 #include <gtk/gtk.h> 49 /* #include <gtk/gtk.h> - why? */ 47 50 48 51 #include "nom.h" … … 110 113 111 114 /* Give object the chance to free resources */ 112 _nomUnInit(nomSelf, NULL HANDLE);115 _nomUnInit(nomSelf, NULL); 113 116 114 117 /* And now delete the object */ … … 155 158 It is possible that we are called by a subclass. So get the class object and let the 156 159 class object create the correct class. */ 157 nomCls=NOMObject_nomGetClass(nomSelf, NULL HANDLE);158 return NOMClass_nomNew(nomCls, NULL HANDLE);160 nomCls=NOMObject_nomGetClass(nomSelf, NULL); 161 return NOMClass_nomNew(nomCls, NULL); 159 162 } 160 163 … … 203 206 } 204 207 205 if(nomClass==_nomGetClass(nomSelf, NULL HANDLE))208 if(nomClass==_nomGetClass(nomSelf, NULL)) 206 209 return TRUE; 207 210
Note:
See TracChangeset
for help on using the changeset viewer.