Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/kernel/qgesturerecognizer.cpp

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation (qt-info@nokia.com)
     
    4545#include "private/qgesturemanager_p.h"
    4646
     47#ifndef QT_NO_GESTURES
     48
    4749QT_BEGIN_NAMESPACE
    4850
     
    6062   need to use this class directly. Instances will be created behind the scenes by the
    6163   framework.
     64
     65   For an overview of gesture handling in Qt and information on using gestures
     66   in your applications, see the \l{Gestures Programming} document.
    6267
    6368   \section1 Recognizing Gestures
     
    162167    Reimplement this function to create a custom QGesture-derived gesture
    163168    object if necessary.
     169
     170    The application takes ownership of the created gesture object.
    164171*/
    165172QGesture *QGestureRecognizer::create(QObject *target)
     
    182189        d->state = Qt::NoGesture;
    183190        d->hotSpot = QPointF();
     191        d->sceneHotSpot = QPointF();
    184192        d->isHotSpotSet = false;
    185193    }
     
    229237
    230238QT_END_NAMESPACE
     239
     240#endif // QT_NO_GESTURES
Note: See TracChangeset for help on using the changeset viewer.