Ignore:
Timestamp:
Jun 10, 2001, 2:05:41 PM (24 years ago)
Author:
sandervl
Message:

bugfixes + os/2 look support added

File:
1 edited

Legend:

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

    r5950 r5951  
    1 /* $Id: gen_object.cpp,v 1.9 2001-06-10 09:19:57 sandervl Exp $ */
     1/* $Id: gen_object.cpp,v 1.10 2001-06-10 12:05:38 sandervl Exp $ */
    22/*
    33 * Generic Object Class for OS/2
     
    9191LONG GenericObject::addRef()
    9292{
    93   dprintf(("addRef %x -> refcount %x", this, refCount));
     93////  dprintf(("addRef %x -> refcount %x", this, refCount));
    9494  return InterlockedIncrement(&refCount);
    9595}
     
    9999LONG GenericObject::release()
    100100{
    101   dprintf(("release %x -> refcount %x", this, refCount));
     101////  dprintf(("release %x -> refcount %x", this, refCount));
    102102#ifdef DEBUG
    103103  if(refCount-1 < 0) {
Note: See TracChangeset for help on using the changeset viewer.