Ignore:
Timestamp:
Jul 20, 2001, 5:42:38 PM (24 years ago)
Author:
sandervl
Message:

initterm update

File:
1 edited

Legend:

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

    r5964 r6375  
    1 /* $Id: gen_object.cpp,v 1.11 2001-06-11 14:37:46 sandervl Exp $ */
     1/* $Id: gen_object.cpp,v 1.12 2001-07-20 15:34:16 sandervl Exp $ */
    22/*
    33 * Generic Object Class for OS/2
     
    9191LONG GenericObject::addRef()
    9292{
    93   dprintf2(("addRef %x -> refcount %x", this, refCount+1));
     93////  dprintf2(("addRef %x -> refcount %x", this, refCount+1));
    9494  return InterlockedIncrement(&refCount);
    9595}
     
    9999LONG GenericObject::release()
    100100{
    101   dprintf2(("release %x -> refcount %x", this, refCount-1));
     101////  dprintf2(("release %x -> refcount %x", this, refCount-1));
    102102#ifdef DEBUG
    103103  if(refCount-1 < 0) {
Note: See TracChangeset for help on using the changeset viewer.