Changeset 209 for trunk/desktop/class_c


Ignore:
Timestamp:
Jan 21, 2007, 4:57:47 PM (19 years ago)
Author:
cinc
Message:

Integration of nomUnInit() with the garbage collector using finalizers.

Location:
trunk/desktop/class_c
Files:
3 edited

Legend:

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

    r206 r209  
    5858{
    5959/* M_WPFolderData* nomThis=M_WPFolderGetData(nomSelf); */
    60   g_message("-----------> %s" , __FUNCTION__);
     60
    6161  /* Load default  icon */
    6262  if(!pIconCls){
  • trunk/desktop/class_c/m_wpobject.c

    r206 r209  
    122122
    123123/* orbit-idl-c-stubs.c, cs_output_stub line 347 */
    124 NOM_Scope void NOMLINK impl_M_WPObject_nomUninit(M_WPObject* nomSelf, CORBA_Environment *ev)
     124NOM_Scope void NOMLINK impl_M_WPObject_nomUnInit(M_WPObject* nomSelf, CORBA_Environment *ev)
    125125{
    126126/* M_WPObjectData* nomThis=M_WPObjectGetData(nomSelf); */
     
    128128  M_WPObject_wpclsUnInitData(nomSelf, NULLHANDLE);
    129129
    130   M_WPObject_nomUninit_parent((NOMObject*)nomSelf,  ev);
     130  M_WPObject_nomUnInit_parent((NOMObject*)nomSelf,  ev);
    131131}
    132132
  • trunk/desktop/class_c/wpobject.c

    r206 r209  
    135135}
    136136
    137 NOM_Scope void NOMLINK impl_WPObject_nomUninit(WPObject* nomSelf, CORBA_Environment *ev)
     137NOM_Scope void NOMLINK impl_WPObject_nomUnInit(WPObject* nomSelf, CORBA_Environment *ev)
    138138{
    139139  WPObjectData* nomThis=WPObjectGetData(nomSelf);
     
    143143  //g_mutex_free(_gObjectMutex);
    144144  DosCloseMutexSem(_gObjectMutex);
    145   WPObject_nomUninit_parent((NOMObject*)nomSelf, ev);
     145  WPObject_nomUnInit_parent((NOMObject*)nomSelf, ev);
    146146}
    147147
Note: See TracChangeset for help on using the changeset viewer.