Ignore:
Timestamp:
Sep 15, 2009, 3:21:22 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Implemented standard cursor shapes (#54).

File:
1 edited

Legend:

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

    r169 r182  
    14021402
    14031403#ifndef QT_NO_CURSOR
     1404
     1405
     1406
    14041407void QWidgetPrivate::setCursor_sys(const QCursor &cursor)
    14051408{
    1406     // @todo implement, depends on #29
     1409    Q_UNUSED(cursor);
     1410    Q_Q(QWidget);
     1411    qt_pm_set_cursor(q, false);
    14071412}
    14081413
    14091414void QWidgetPrivate::unsetCursor_sys()
    14101415{
    1411     // @todo implement, depends on #29
     1416    Q_Q(QWidget);
     1417    qt_pm_set_cursor(q, false);
    14121418}
    14131419#endif
Note: See TracChangeset for help on using the changeset viewer.