Changeset 209
- Timestamp:
- Jan 21, 2007, 4:57:47 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/class_c/m_wpfolder.c
r206 r209 58 58 { 59 59 /* M_WPFolderData* nomThis=M_WPFolderGetData(nomSelf); */ 60 g_message("-----------> %s" , __FUNCTION__); 60 61 61 /* Load default icon */ 62 62 if(!pIconCls){ -
trunk/desktop/class_c/m_wpobject.c
r206 r209 122 122 123 123 /* orbit-idl-c-stubs.c, cs_output_stub line 347 */ 124 NOM_Scope void NOMLINK impl_M_WPObject_nomUn init(M_WPObject* nomSelf, CORBA_Environment *ev)124 NOM_Scope void NOMLINK impl_M_WPObject_nomUnInit(M_WPObject* nomSelf, CORBA_Environment *ev) 125 125 { 126 126 /* M_WPObjectData* nomThis=M_WPObjectGetData(nomSelf); */ … … 128 128 M_WPObject_wpclsUnInitData(nomSelf, NULLHANDLE); 129 129 130 M_WPObject_nomUn init_parent((NOMObject*)nomSelf, ev);130 M_WPObject_nomUnInit_parent((NOMObject*)nomSelf, ev); 131 131 } 132 132 -
trunk/desktop/class_c/wpobject.c
r206 r209 135 135 } 136 136 137 NOM_Scope void NOMLINK impl_WPObject_nomUn init(WPObject* nomSelf, CORBA_Environment *ev)137 NOM_Scope void NOMLINK impl_WPObject_nomUnInit(WPObject* nomSelf, CORBA_Environment *ev) 138 138 { 139 139 WPObjectData* nomThis=WPObjectGetData(nomSelf); … … 143 143 //g_mutex_free(_gObjectMutex); 144 144 DosCloseMutexSem(_gObjectMutex); 145 WPObject_nomUn init_parent((NOMObject*)nomSelf, ev);145 WPObject_nomUnInit_parent((NOMObject*)nomSelf, ev); 146 146 } 147 147 -
trunk/desktop/idl/m_wpobject.idl
r206 r209 55 55 /* Methods overriden by this class */ 56 56 NOMOVERRIDE(nomInit); 57 NOMOVERRIDE(nomUn init);57 NOMOVERRIDE(nomUnInit); 58 58 59 59 /* Instance variables of this class. Theses are not -
trunk/desktop/idl/wpobject.idl
r203 r209 124 124 /* Methods overriden by this class */ 125 125 NOMOVERRIDE(nomInit); 126 NOMOVERRIDE(nomUn init);126 NOMOVERRIDE(nomUnInit); 127 127 128 128 /* Instancce variables of this class. Theses are not -
trunk/foundation/class_c/nomfilepath.c
r207 r209 42 42 #include <os2.h> 43 43 44 #include <nom.h> 45 #include <nomtk.h> 46 44 47 #include <string.h> 45 48 #include <glib.h> -
trunk/foundation/class_c/nomstring.c
r207 r209 41 41 #define INCL_DOS 42 42 #include <os2.h> 43 44 #include <nom.h> 45 #include <nomtk.h> 43 46 44 47 #include <string.h> … … 178 181 } 179 182 180 181 182 NOM_Scope void NOMLINK impl_NOMString_nomUninit(NOMString* nomSelf, CORBA_Environment *ev) 183 #if 0 184 NOM_Scope void NOMLINK impl_NOMString_nomUnInit(NOMString* nomSelf, CORBA_Environment *ev) 183 185 { 184 186 NOMStringData* nomThis=NOMStringGetData(nomSelf); … … 187 189 g_string_free(_gString, TRUE); 188 190 189 NOMString_nomUninit_parent((NOMObject*)nomSelf, ev); 190 191 NOMString_nomUnInit_parent((NOMObject*)nomSelf, ev); 191 192 } 192 193 #endif -
trunk/foundation/idl/nomstring.idl
r180 r209 61 61 /* Init and uninit the GString */ 62 62 NOMOVERRIDE(nomInit); 63 NOMOVERRIDE(nomUninit); 63 64 64 /* The GString holding the data */ 65 65 NOMINSTANCEVAR(PGString gString); -
trunk/gui/class_c/nommenu.c
r207 r209 77 77 78 78 /* orbit-idl-c-stubs.c, cs_output_stub line 347 */ 79 NOM_Scope void NOMLINK impl_NOMMenu_nomUn init(NOMMenu* nomSelf, CORBA_Environment *ev)79 NOM_Scope void NOMLINK impl_NOMMenu_nomUnInit(NOMMenu* nomSelf, CORBA_Environment *ev) 80 80 { 81 81 /* NOMMenuData* nomThis=NOMMenuGetData(nomSelf); */ 82 g_message("%s: empty method. Remove it!", __FUNCTION__); 82 83 83 #if 0 84 /* orbit-idl-c-stubs.c, VoyagerWriteProtoForParentCall line 119 */ 85 NOMMenu_nomUninit_parent(nomSelf, ev); 86 #endif 84 NOMMenu_nomUnInit_parent(nomSelf, ev); 87 85 } 88 86 -
trunk/gui/idl/nommenu.idl
r163 r209 54 54 55 55 NOMOVERRIDE(nomInit); 56 NOMOVERRIDE(nomUn init);56 NOMOVERRIDE(nomUnInit); 57 57 58 58 NOMINSTANCEVAR(PGtkWidget _pgMenuHandle);
Note:
See TracChangeset
for help on using the changeset viewer.