diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-05 00:29:13 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-05 00:29:13 +0100 |
commit | c328e203e0d84177a0028d8ba5b0af4b82c16eeb (patch) | |
tree | e6b38cc023c1920a6b2bab87a36ac5932a534ad5 /src/tabbar.h | |
parent | Merge commit 'refs/merge-requests/85' of git://gitorious.org/rekonq/mainline (diff) | |
download | rekonq-c328e203e0d84177a0028d8ba5b0af4b82c16eeb.tar.xz |
QPointers --> QWeakPointers
Diffstat (limited to 'src/tabbar.h')
-rw-r--r-- | src/tabbar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabbar.h b/src/tabbar.h index f0476cbd..b57106dc 100644 --- a/src/tabbar.h +++ b/src/tabbar.h @@ -35,7 +35,7 @@ #include "rekonqprivate_export.h" // Qt Includes -#include <QPointer> +#include <QWeakPointer> // KDE Includes #include <KTabBar> @@ -99,7 +99,7 @@ private: */ int m_actualIndex; - QPointer<KPassivePopup> m_previewPopup; + QWeakPointer<KPassivePopup> m_previewPopup; int m_currentTabPreview; }; |