Ignore:
Timestamp:
Jul 31, 2009, 1:13:57 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Added OS/2 stubs for platform-specific parts of all key GUI classes. Non-key classes are temporarily disabled with QT_NO_ defines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/painting/qgraphicssystem.cpp

    r2 r95  
    4848# include <private/qpixmap_raster_p.h>
    4949#endif
     50#ifdef Q_WS_PM
     51# include <private/qpixmap_raster_p.h> // @todo check this
     52#endif
    5053#ifdef Q_WS_MAC
    5154# include <private/qpixmap_mac_p.h>
     
    6770#elif defined(Q_WS_WIN)
    6871    return new QRasterPixmapData(type);
     72#elif defined(Q_WS_PM)
     73    return new QRasterPixmapData(type); // @todo check this
    6974#elif defined(Q_WS_MAC)
    7075    return new QMacPixmapData(type);
Note: See TracChangeset for help on using the changeset viewer.