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/core/ToDbExporter.cpp')
-rw-r--r--src/core/ToDbExporter.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/core/ToDbExporter.cpp b/src/core/ToDbExporter.cpp
deleted file mode 100644
index 1f76fb744..000000000
--- a/src/core/ToDbExporter.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2014 Felix Geyer <debfx@fobos.de>
- * Copyright (C) 2014 Florian Geyer <blueice@fobos.de>
- *
- * 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
- * the Free Software Foundation, either version 2 or (at your option)
- * version 3 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "ToDbExporter.h"
-#include "core/Database.h"
-#include "core/Group.h"
-#include "core/Metadata.h"
-
-Database* ToDbExporter::exportGroup(Group* group)
-{
- Database* oldDb = group->database();
- Q_ASSERT(oldDb);
-
- Database* db = new Database();
- Group* clonedGroup = group->clone(Entry::CloneNewUuid | Entry::CloneIncludeHistory);
- clonedGroup->setParent(db->rootGroup());
-
- QSet<Uuid> customIcons = group->customIconsRecursive();
- db->metadata()->copyCustomIcons(customIcons, oldDb->metadata());
-
- db->copyAttributesFrom(oldDb);
-
- return db;
-}