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/painting/qgraphicssystem_raster.cpp

    r651 r769  
    4242#include "qgraphicssystem_raster_p.h"
    4343
     44#ifdef Q_OS_SYMBIAN
     45#include "private/qpixmap_s60_p.h"
     46#include "private/qwindowsurface_s60_p.h"
     47#else
    4448#include "private/qpixmap_raster_p.h"
    4549#include "private/qwindowsurface_raster_p.h"
     50#endif
    4651
    4752QT_BEGIN_NAMESPACE
     
    4954QPixmapData *QRasterGraphicsSystem::createPixmapData(QPixmapData::PixelType type) const
    5055{
     56#ifdef Q_OS_SYMBIAN
     57    return new QS60PixmapData(type);
     58#else
    5159    return new QRasterPixmapData(type);
     60#endif
    5261}
    5362
    5463QWindowSurface *QRasterGraphicsSystem::createWindowSurface(QWidget *widget) const
    5564{
     65#ifdef Q_OS_SYMBIAN
     66    return new QS60WindowSurface(widget);
     67#else
    5668    return new QRasterWindowSurface(widget);
     69#endif
    5770}
    5871
Note: See TracChangeset for help on using the changeset viewer.