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/image/qpixmapdatafactory.cpp

    r2 r95  
    5151# include <private/qpixmap_raster_p.h>
    5252#endif
     53#ifdef Q_WS_PM
     54# include <private/qpixmap_raster_p.h> // @todo check this
     55#endif
    5356#ifdef Q_WS_MAC
    5457# include <private/qpixmap_mac_p.h>
     
    7881#elif defined(Q_WS_WIN)
    7982    return new QRasterPixmapData(type);
     83#elif defined(Q_WS_PM)
     84    return new QRasterPixmapData(type); // @todo check this
    8085#elif defined(Q_WS_MAC)
    8186    return new QMacPixmapData(type);
Note: See TracChangeset for help on using the changeset viewer.