Ignore:
Timestamp:
Aug 2, 2010, 9:27:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

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

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/kernel/qapplication.cpp

    r651 r769  
    139139QT_BEGIN_NAMESPACE
    140140
    141 extern void qt_call_post_routines();
     141Q_DECL_IMPORT extern void qt_call_post_routines();
    142142
    143143int QApplicationPrivate::app_compile_version = 0x040000; //we don't know exactly, but it's at least 4.0.0
     
    895895    QWidgetPrivate::mapper = new QWidgetMapper;
    896896    QWidgetPrivate::allWidgets = new QWidgetSet;
     897
     898#if !defined(Q_WS_X11) && !defined(Q_WS_QWS)
     899    // initialize the graphics system - on X11 this is initialized inside
     900    // qt_init() in qapplication_x11.cpp because of several reasons.
     901    // On QWS, the graphics system is set by the QScreen plugin.
     902    graphics_system = QGraphicsSystemFactory::create(graphics_system_name);
     903#endif
     904
    897905    if (qt_appType != QApplication::Tty)
    898906        (void) QApplication::style();  // trigger creation of application style
     
    929937    qInitDrawhelperAsm();
    930938
    931 #if !defined(Q_WS_X11) && !defined(Q_WS_QWS)
    932     // initialize the graphics system - on X11 this is initialized inside
    933     // qt_init() in qapplication_x11.cpp because of several reasons.
    934     // On QWS, the graphics system is set by the QScreen plugin.
    935     graphics_system = QGraphicsSystemFactory::create(graphics_system_name);
    936 #endif
    937939#ifndef QT_NO_WHEELEVENT
    938940    QApplicationPrivate::wheel_scroll_lines = 3;
Note: See TracChangeset for help on using the changeset viewer.