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/tools/qtestlib/wince/cetest/main.cpp

    r769 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])
     
    284284        return -1;
    285285    }
    286     // Check wether the project is still in debug/release mode after reading
     286    // Check wether the project is still in debug/release mode after reading
    287287    // If .pro specifies to be one mode only, we need to accept this
    288     if (project.isActiveConfig("debug"))
     288    if (project.isActiveConfig("debug")
    289289        TestConfiguration::testDebug = true;
    290     else
     290        debugOutput("ActiveConfig: debug only in .pro.", 1);
     291    }
     292    if (!project.isActiveConfig("debug") && project.isActiveConfig("release")) {
    291293        TestConfiguration::testDebug = false;
     294
     295
    292296
    293297    // determine what is the real mkspec to use if the default mkspec is being used
Note: See TracChangeset for help on using the changeset viewer.