QCursor: Remove doc of obsolete functions

These functions don't exist in QPA land.

Change-Id: I50c0588cf03ed64878c8ed864dc18a7558b20156
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Girish Ramakrishnan 2012-05-30 10:46:02 -07:00 committed by Qt by Nokia
parent 241992ad0d
commit 8d27345327
2 changed files with 0 additions and 37 deletions

View File

@ -152,37 +152,6 @@ QT_BEGIN_NAMESPACE
\sa QWidget, {fowler}{GUI Design Handbook: Cursors}
*/
/*!
\fn HCURSOR_or_HANDLE QCursor::handle() const
Returns a platform-specific cursor handle. The \c
HCURSOR_or_HANDLE type is \c HCURSOR on Windows and Qt::HANDLE on X11
and Mac OS X. On \l{Qt for Embedded Linux} it is an integer.
\warning Using the value returned by this function is not
portable.
*/
/*!
\fn QCursor::QCursor(HCURSOR cursor)
Constructs a Qt cursor from the given Windows \a cursor.
\warning This function is only available on Windows.
\sa handle()
*/
/*!
\fn QCursor::QCursor(Qt::HANDLE handle)
Constructs a Qt cursor from the given \a handle.
\warning This function is only available on X11.
\sa handle()
*/
/*!
\fn QPoint QCursor::pos(const QScreen *screen)

View File

@ -108,12 +108,6 @@ public:
inline static void setPos(const QPoint &p) { setPos(p.x(), p.y()); }
inline static void setPos(QScreen *screen, const QPoint &p) { setPos(screen, p.x(), p.y()); }
#ifdef qdoc
HCURSOR_or_HANDLE handle() const;
QCursor(HCURSOR cursor);
QCursor(Qt::HANDLE cursor);
#endif
#ifndef qdoc
int handle() const;
#endif