Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/Kdbx4XmlReader.h')
-rw-r--r--src/format/Kdbx4XmlReader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format/Kdbx4XmlReader.h b/src/format/Kdbx4XmlReader.h
index 6a0a6d4f4..229ac7425 100644
--- a/src/format/Kdbx4XmlReader.h
+++ b/src/format/Kdbx4XmlReader.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
+ * Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -27,10 +27,10 @@
#include "core/TimeInfo.h"
#include "core/Uuid.h"
+#include "core/Group.h"
class Database;
class Entry;
-class Group;
class KeePass2RandomStream;
class Metadata;
@@ -88,7 +88,7 @@ private:
KeePass2RandomStream* m_randomStream;
Database* m_db;
Metadata* m_meta;
- Group* m_tmpParent;
+ QScopedPointer<Group> m_tmpParent;
QHash<Uuid, Group*> m_groups;
QHash<Uuid, Entry*> m_entries;
QHash<QString, QByteArray> m_binaryPool;