Changeset 11098

Show
Ignore:
Timestamp:
03/30/07 15:54:02 (2 years ago)
Author:
dmorissette
Message:

Backporting MITAB bug 1603 (GDAL ticket 1541)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.4/gdal/ogr/ogrsf_frmts/mitab/mitab_feature.cpp

    r10428 r11098  
    11/********************************************************************** 
    2  * $Id: mitab_feature.cpp,v 1.65 2006/07/25 13:22:58 dmorissette Exp $ 
     2 * $Id: mitab_feature.cpp,v 1.66 2006/10/17 14:34:31 dmorissette Exp $ 
    33 * 
    44 * Name:     mitab_feature.cpp 
     
    3131 * 
    3232 * $Log: mitab_feature.cpp,v $ 
     33 * Revision 1.66  2006/10/17 14:34:31  dmorissette 
     34 * Fixed problem with null brush bg color (bug 1603) 
     35 * 
    3336 * Revision 1.65  2006/07/25 13:22:58  dmorissette 
    3437 * Fixed initialization of MBR of TABCollection members (bug 1520) 
     
    78347837    // Set the BackColor, if not set, then it's transparent 
    78357838    pszBrushColor = poBrushStyle->BackColor(bIsNull); 
     7839    if(bIsNull) pszBrushColor = NULL; 
     7840 
    78367841    if(pszBrushColor) 
    78377842    { 
     
    78487853    // Set the ForeColor 
    78497854    pszBrushColor = poBrushStyle->ForeColor(bIsNull); 
     7855    if(bIsNull) pszBrushColor = NULL; 
     7856 
    78507857    if(pszBrushColor) 
    78517858    {