Ignore:
Timestamp:
Apr 26, 2010, 1:05:08 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Implemented drawing widgets through Dive (see #101) and enabled it by default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/kernel/qwidget_pm.cpp

    r705 r706  
    5656#include "private/qbackingstore_p.h"
    5757#include "private/qwindowsurface_raster_p.h"
     58
    5859
    5960//#define QT_DEBUGWINCREATEDESTROY
     
    24712472{
    24722473    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;
    24742478}
    24752479
Note: See TracChangeset for help on using the changeset viewer.