mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
remove unused QPaintEvent::m_erased member
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
2ef00ba87c
commit
b28f2fc9d8
2 changed files with 2 additions and 23 deletions
|
@ -905,32 +905,12 @@ Qt::FocusReason QFocusEvent::reason() const
|
|||
QWidget::paintEvent()
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QPaintEvent::erased() const
|
||||
\compat
|
||||
|
||||
Returns true if the paint event region (or rectangle) has been
|
||||
erased with the widget's background; otherwise returns false.
|
||||
|
||||
Qt 4 \e always erases regions that require painting. The exception
|
||||
to this rule is if the widget sets the Qt::WA_OpaquePaintEvent or
|
||||
Qt::WA_NoSystemBackground attributes. If either one of those
|
||||
attributes is set \e and the window system does not make use of
|
||||
subwidget alpha composition (currently X11 and Windows, but this
|
||||
may change), then the region is not erased.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QPaintEvent::setErased(bool b) { m_erased = b; }
|
||||
\internal
|
||||
*/
|
||||
|
||||
/*!
|
||||
Constructs a paint event object with the region that needs to
|
||||
be updated. The region is specified by \a paintRegion.
|
||||
*/
|
||||
QPaintEvent::QPaintEvent(const QRegion& paintRegion)
|
||||
: QEvent(Paint), m_rect(paintRegion.boundingRect()), m_region(paintRegion), m_erased(false)
|
||||
: QEvent(Paint), m_rect(paintRegion.boundingRect()), m_region(paintRegion)
|
||||
{}
|
||||
|
||||
/*!
|
||||
|
@ -938,7 +918,7 @@ QPaintEvent::QPaintEvent(const QRegion& paintRegion)
|
|||
to be updated. The region is specified by \a paintRect.
|
||||
*/
|
||||
QPaintEvent::QPaintEvent(const QRect &paintRect)
|
||||
: QEvent(Paint), m_rect(paintRect),m_region(paintRect), m_erased(false)
|
||||
: QEvent(Paint), m_rect(paintRect),m_region(paintRect)
|
||||
{}
|
||||
|
||||
|
||||
|
|
|
@ -216,7 +216,6 @@ protected:
|
|||
friend class QCoreApplication;
|
||||
QRect m_rect;
|
||||
QRegion m_region;
|
||||
bool m_erased;
|
||||
};
|
||||
|
||||
class QUpdateLaterEvent : public QEvent
|
||||
|
|
Loading…
Add table
Reference in a new issue