Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/styles/qstyleoption.cpp

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation ([email protected])
     
    54205420*/
    54215421
     5422
    54225423QDebug operator<<(QDebug debug, const QStyleOption::OptionType &optionType)
    54235424{
    5424 #if !defined(QT_NO_DEBUG) && !defined(QT_NO_DEBUG_STREAM)
     5425#if !defined(QT_NO_DEBUG)
    54255426    switch (optionType) {
    54265427    case QStyleOption::SO_Default:
     
    54835484        debug << "SO_GraphicsItem"; break;
    54845485    }
     5486
     5487
    54855488#endif
    54865489    return debug;
     
    54895492QDebug operator<<(QDebug debug, const QStyleOption &option)
    54905493{
    5491 #if !defined(QT_NO_DEBUG) && !defined(QT_NO_DEBUG_STREAM)
     5494#if !defined(QT_NO_DEBUG)
    54925495    debug << "QStyleOption(";
    54935496    debug << QStyleOption::OptionType(option.type);
     
    54965499    debug << ',' << option.rect;
    54975500    debug << ')';
     5501
     5502
    54985503#endif
    54995504    return debug;
    55005505}
     5506
    55015507
    55025508QT_END_NAMESPACE
Note: See TracChangeset for help on using the changeset viewer.