- Timestamp:
- Apr 26, 2010, 1:05:08 AM (15 years ago)
- Location:
- trunk/src/gui
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qwidget_pm.cpp
r705 r706 56 56 #include "private/qbackingstore_p.h" 57 57 #include "private/qwindowsurface_raster_p.h" 58 58 59 59 60 //#define QT_DEBUGWINCREATEDESTROY … … 2471 2472 { 2472 2473 Q_Q(QWidget); 2473 return new QRasterWindowSurface(q); 2474 QWindowSurface *surface = QPMDiveWindowSurface::create(q); 2475 if (!surface) 2476 surface = new QRasterWindowSurface(q); 2477 return surface; 2474 2478 } 2475 2479 -
trunk/src/gui/painting/painting.pri
r617 r706 411 411 } 412 412 413 413 os2 { 414 HEADERS += painting/qwindowsurface_pm_p.h 415 SOURCES += painting/qwindowsurface_pm.cpp 416 } 414 417 415 418 symbian { -
trunk/src/gui/painting/qgraphicssystemfactory.cpp
r651 r706 69 69 system = QLatin1String("openvg"); 70 70 } 71 #elif defined (QT_GRAPHICSSYSTEM_RASTER) && !defined(Q_WS_WIN) && !defined(Q_ OS_SYMBIAN)71 #elif defined (QT_GRAPHICSSYSTEM_RASTER) && !defined(Q_WS_WIN) && !defined(Q_OS_SYMBIAN) 72 72 if (system.isEmpty()) { 73 73 system = QLatin1String("raster");
Note:
See TracChangeset
for help on using the changeset viewer.