Remove QRegion::handle
This function is unavailable in QPA land (it currently returns the QRegionPrivate as the handle()). Change-Id: I4e81e29d4546a4737c1aaab4ee1fb97e28a473f5 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
This commit is contained in:
parent
7a2f63feb6
commit
ce7b3c9720
@ -167,16 +167,6 @@ QT_BEGIN_NAMESPACE
|
|||||||
Translates to the given \a point.
|
Translates to the given \a point.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn Handle QRegion::handle() const
|
|
||||||
|
|
||||||
Returns a platform-specific region handle. The \c Handle type is
|
|
||||||
\c HRGN on Windows, \c Region on X11, and \c RgnHandle on Mac OS
|
|
||||||
X. On \l{Qt for Embedded Linux} it is \c {void *}.
|
|
||||||
|
|
||||||
\warning This function is not portable.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
QRegion member functions
|
QRegion member functions
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
@ -134,13 +134,6 @@ public:
|
|||||||
inline bool operator!=(const QRegion &r) const { return !(operator==(r)); }
|
inline bool operator!=(const QRegion &r) const { return !(operator==(r)); }
|
||||||
operator QVariant() const;
|
operator QVariant() const;
|
||||||
|
|
||||||
#ifdef qdoc
|
|
||||||
Handle handle() const;
|
|
||||||
#endif
|
|
||||||
#ifndef qdoc
|
|
||||||
inline void *handle() const { return d->qt_rgn; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef QT_NO_DATASTREAM
|
#ifndef QT_NO_DATASTREAM
|
||||||
friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QRegion &);
|
friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QRegion &);
|
||||||
friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QRegion &);
|
friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QRegion &);
|
||||||
|
Loading…
Reference in New Issue
Block a user