aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-09-05 02:17:01 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-05 12:27:48 +0200
commitf8db439dae5e494091e72d30893880c60fbd0364 (patch)
tree3c25882fa6e19e0efd376e6e9e69d5bdf2a1e883 /src
parent2cafe1373f22fbd286faea4a2c7a604307c3f1e9 (diff)
Fix QWinJumpList::isXxxCategoryShown property type
Change-Id: If369c00ffff2c3869a3b94372e9a568178870433 Reviewed-by: Caroline Chao <caroline.chao@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/winextras/qwinjumplist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/winextras/qwinjumplist.h b/src/winextras/qwinjumplist.h
index 03df280..18ce2ea 100644
--- a/src/winextras/qwinjumplist.h
+++ b/src/winextras/qwinjumplist.h
@@ -56,8 +56,8 @@ class QWinJumpListPrivate;
class Q_WINEXTRAS_EXPORT QWinJumpList : public QObject
{
Q_OBJECT
- Q_PROPERTY(int recentCategoryShown READ isRecentCategoryShown WRITE setRecentCategoryShown)
- Q_PROPERTY(int frequentCategoryShown READ isFrequentCategoryShown WRITE setFrequentCategoryShown)
+ Q_PROPERTY(bool recentCategoryShown READ isRecentCategoryShown WRITE setRecentCategoryShown)
+ Q_PROPERTY(bool frequentCategoryShown READ isFrequentCategoryShown WRITE setFrequentCategoryShown)
public:
explicit QWinJumpList(QObject *parent = 0);