parent
9fa2ee40a9
commit
b5af7478c1
@ -1 +1,2 @@
|
||||
accounts-qt-0.31.tar.gz
|
||||
/accounts-qt-1.6.tar.bz2
|
||||
|
@ -1,28 +0,0 @@
|
||||
diff -Naur accounts-qt-0.28.org/Accounts/account.cpp accounts-qt-0.28/Accounts/account.cpp
|
||||
--- accounts-qt-0.28.org/Accounts/account.cpp 2010-06-14 22:45:41.000000000 +0800
|
||||
+++ accounts-qt-0.28/Accounts/account.cpp 2010-07-23 20:22:54.335786908 +0800
|
||||
@@ -496,10 +496,10 @@
|
||||
value = g_value_get_uint(&val);
|
||||
break;
|
||||
case G_TYPE_INT64:
|
||||
- value = g_value_get_int64(&val);
|
||||
+ value = qint64(g_value_get_int64(&val));
|
||||
break;
|
||||
case G_TYPE_UINT64:
|
||||
- value = g_value_get_uint64(&val);
|
||||
+ value = quint64(g_value_get_uint64(&val));
|
||||
break;
|
||||
case G_TYPE_BOOLEAN:
|
||||
value = g_value_get_boolean(&val);
|
||||
diff -Naur accounts-qt-0.28.org/Accounts/account.h accounts-qt-0.28/Accounts/account.h
|
||||
--- accounts-qt-0.28.org/Accounts/account.h 2010-06-14 22:45:41.000000000 +0800
|
||||
+++ accounts-qt-0.28/Accounts/account.h 2010-07-23 20:23:19.636035755 +0800
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
namespace Accounts
|
||||
{
|
||||
-typedef quint32 AccountId;
|
||||
+typedef quint64 AccountId;
|
||||
typedef QList<AccountId> AccountIdList;
|
||||
class Manager;
|
||||
|
@ -0,0 +1,21 @@
|
||||
diff -up accounts-qt-1.6/Accounts/account.h.do-not-initialize-qstring-to-null accounts-qt-1.6/Accounts/account.h
|
||||
--- accounts-qt-1.6/Accounts/account.h.do-not-initialize-qstring-to-null 2013-02-20 15:02:37.000000000 +0100
|
||||
+++ accounts-qt-1.6/Accounts/account.h 2013-03-04 09:34:02.324000094 +0100
|
||||
@@ -105,7 +105,7 @@ public:
|
||||
|
||||
bool supportsService(const QString &serviceType) const;
|
||||
|
||||
- ServiceList services(const QString &serviceType = NULL) const;
|
||||
+ ServiceList services(const QString &serviceType = QString()) const;
|
||||
ServiceList enabledServices() const;
|
||||
|
||||
bool enabled() const;
|
||||
@@ -169,7 +169,7 @@ public:
|
||||
bool default_value = false,
|
||||
SettingSource *source = 0) const;
|
||||
|
||||
- Watch *watchKey(const QString &key = NULL);
|
||||
+ Watch *watchKey(const QString &key = QString());
|
||||
|
||||
void sync();
|
||||
bool syncAndBlock();
|
Loading…
Reference in new issue