aboutsummaryrefslogtreecommitdiff
path: root/examples/GuiClient/accountsCache.h
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-23 12:13:56 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-23 12:13:56 +0000
commit1890eefda81e30d06b20bcca45a76df81fa0f983 (patch)
tree3ca3ef2b810367119494e79381bc59ca36a65a24 /examples/GuiClient/accountsCache.h
parent39dbf87de566dcbcf1593f1203f5299de38caa33 (diff)
downloadqxmpp-1890eefda81e30d06b20bcca45a76df81fa0f983.tar.gz
use QDomDocument instead of QDomElement
Diffstat (limited to 'examples/GuiClient/accountsCache.h')
-rw-r--r--examples/GuiClient/accountsCache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/GuiClient/accountsCache.h b/examples/GuiClient/accountsCache.h
index 638d8f92..1d28cd9b 100644
--- a/examples/GuiClient/accountsCache.h
+++ b/examples/GuiClient/accountsCache.h
@@ -10,7 +10,7 @@ class accountsCache : public QObject
Q_OBJECT
public:
- explicit accountsCache(QObject *parent = 0);
+ explicit accountsCache(QObject *parent);
QStringList getBareJids();
QString getPassword(const QString& bareJid);
@@ -22,7 +22,7 @@ public:
private:
void saveToFile();
- QDomElement m_accountsElement;
+ QDomDocument m_accountsDocument;
};
#endif // ACCOUNTSCACHE_H