QWeakPointer -> QPointer
This commit is contained in:
parent
ed5d4048b6
commit
42411c4844
2 changed files with 4 additions and 4 deletions
|
@ -31,7 +31,7 @@
|
|||
#include "oxygenanimation.h"
|
||||
|
||||
#include <QList>
|
||||
#include <QWeakPointer>
|
||||
#include <QPointer>
|
||||
#include <QRect>
|
||||
|
||||
namespace Oxygen
|
||||
|
@ -90,7 +90,7 @@ namespace Oxygen
|
|||
QRect _boundingRect;
|
||||
|
||||
//! tab button
|
||||
typedef QWeakPointer<Button> ButtonPointer;
|
||||
typedef QPointer<Button> ButtonPointer;
|
||||
ButtonPointer _closeButton;
|
||||
|
||||
};
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <cassert>
|
||||
#include <QObject>
|
||||
#include <QWeakPointer>
|
||||
#include <QPointer>
|
||||
#include <QBasicTimer>
|
||||
#include <QTimerEvent>
|
||||
#include <QPixmap>
|
||||
|
@ -50,7 +50,7 @@ namespace Oxygen
|
|||
|
||||
public:
|
||||
|
||||
typedef QWeakPointer<TitleAnimationData> Pointer;
|
||||
typedef QPointer<TitleAnimationData> Pointer;
|
||||
|
||||
//! constructor
|
||||
explicit TitleAnimationData( QObject* );
|
||||
|
|
Loading…
Reference in a new issue