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
path: root/src
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2010-08-26 01:45:16 +0400
committerFelix Geyer <debfx@fobos.de>2010-08-26 01:45:16 +0400
commit8df8f69e10da19533c284fa70a0814afd8f580da (patch)
tree6cff52364f2c0afda32f9477f099814fa2fd7983 /src
parentcd26e9d474e55bbfe25980856b41b2ea60e5149e (diff)
Actually calling writeDeletedObjects() would be a good idea.
Diffstat (limited to 'src')
-rw-r--r--src/core/Writer.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/core/Writer.cpp b/src/core/Writer.cpp
index 4b8fa9273..5673b3e2f 100644
--- a/src/core/Writer.cpp
+++ b/src/core/Writer.cpp
@@ -139,12 +139,7 @@ void Writer::writeRoot()
m_xml.writeStartElement("Root");
writeGroup(m_db->rootGroup());
-
- m_xml.writeStartElement("DeletedObjects");
-
-
-
- m_xml.writeEndElement();
+ writeDeletedObjects();
m_xml.writeEndElement();
}