Ignore:
Timestamp:
Nov 1, 1999, 8:11:46 PM (26 years ago)
Author:
sandervl
Message:

Activate + group box fixes + cleanup changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/gen_object.cpp

    r949 r1540  
    1 /* $Id: gen_object.cpp,v 1.1 1999-09-15 23:18:50 sandervl Exp $ */
     1/* $Id: gen_object.cpp,v 1.2 1999-11-01 19:11:39 sandervl Exp $ */
    22/*
    33 * Generic Object Class for OS/2
     
    6868//******************************************************************************
    6969//******************************************************************************
     70void GenericObject::DestroyAll(GenericObject *head)
     71{
     72 GenericObject *cur, *next;
     73
     74  cur = head;
     75  while(cur) {
     76        next = cur->next;
     77        delete cur;
     78        cur = next;
     79  }
     80}
     81//******************************************************************************
     82//******************************************************************************
    7083void GenericObject::enterMutex()
    7184{
Note: See TracChangeset for help on using the changeset viewer.