Show
Ignore:
Timestamp:
06/05/08 00:40:20 (6 months ago)
Author:
flynd
Message:

Silence warnings from gcc 4.3

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/views/contactdelegate.cpp

    r6215 r6231  
    209209  else 
    210210  { 
    211     if (arg.option.state & QStyle::State_Selected) 
     211    if ((arg.option.state & QStyle::State_Selected) != 0) 
     212    { 
    212213      if (arg.skin->highBackColor.isValid()) 
    213214        FILL(arg.skin->highBackColor); 
    214215      else 
    215216        FILL(arg.option.palette.brush(arg.cg, QPalette::Highlight)); 
     217    } 
    216218  } 
    217219#undef FILL