mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 11:22:58 +00:00
remove unused QScriptClassPropertyIteratorPrivate::q_ptr member
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
0ecbc71d82
commit
7e618daff5
1 changed files with 0 additions and 5 deletions
|
@ -55,14 +55,11 @@ QT_BEGIN_NAMESPACE
|
|||
|
||||
class QScriptClassPropertyIteratorPrivate
|
||||
{
|
||||
Q_DECLARE_PUBLIC(QScriptClassPropertyIterator)
|
||||
public:
|
||||
QScriptClassPropertyIteratorPrivate() {}
|
||||
virtual ~QScriptClassPropertyIteratorPrivate() {}
|
||||
|
||||
QScriptValue object;
|
||||
|
||||
QScriptClassPropertyIterator *q_ptr;
|
||||
};
|
||||
|
||||
/*!
|
||||
|
@ -74,7 +71,6 @@ public:
|
|||
QScriptClassPropertyIterator::QScriptClassPropertyIterator(const QScriptValue &object)
|
||||
: d_ptr(new QScriptClassPropertyIteratorPrivate)
|
||||
{
|
||||
d_ptr->q_ptr = this;
|
||||
d_ptr->object = object;
|
||||
}
|
||||
|
||||
|
@ -85,7 +81,6 @@ QScriptClassPropertyIterator::QScriptClassPropertyIterator(const QScriptValue &o
|
|||
QScriptClassPropertyIteratorPrivate &dd)
|
||||
: d_ptr(&dd)
|
||||
{
|
||||
d_ptr->q_ptr = this;
|
||||
d_ptr->object = object;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue