Ignore:
Timestamp:
May 23, 2000, 8:46:21 PM (25 years ago)
Author:
sandervl
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/dibsect.cpp

    r3567 r3594  
    1 /* $Id: dibsect.cpp,v 1.31 2000-05-19 18:42:14 sandervl Exp $ */
     1/* $Id: dibsect.cpp,v 1.32 2000-05-23 18:46:20 sandervl Exp $ */
    22
    33/*
     
    619619//******************************************************************************
    620620//******************************************************************************
    621 char  DIBSection::GetBitCount()
     621int  DIBSection::GetBitCount()
    622622{
    623623   if(pOS2bmp == NULL)
     
    628628//******************************************************************************
    629629//******************************************************************************
     630int DIBSection::GetHeight()
     631{
     632   if(pOS2bmp == NULL)
     633     return 0;
     634   else
     635     return pOS2bmp->cy;
     636}
     637//******************************************************************************
     638//******************************************************************************
    630639DIBSection *DIBSection::section = NULL;
Note: See TracChangeset for help on using the changeset viewer.