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>2011-12-23 13:28:18 +0400
committerFelix Geyer <debfx@fobos.de>2011-12-23 13:28:18 +0400
commitaf820f49312db11c26490f14273bbc2b9040d1e6 (patch)
treebe2aec6bf222c4e71ef297c2a67a4ac4594dbcee /src
parentc00e8d64a0f45de19c56c8513dcfc81bc80c12c9 (diff)
Add missing include guards.
Diffstat (limited to 'src')
-rw-r--r--src/core/DatabaseIcons.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/DatabaseIcons.h b/src/core/DatabaseIcons.h
index 2894351fa..76ca84d60 100644
--- a/src/core/DatabaseIcons.h
+++ b/src/core/DatabaseIcons.h
@@ -15,6 +15,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef KEEPASSX_DATABASEICONS_H
+#define KEEPASSX_DATABASEICONS_H
+
#include <QtCore/QHash>
#include <QtGui/QIcon>
@@ -35,3 +38,5 @@ private:
QList<QString> m_indexToName;
QHash<int,QIcon> m_iconCache;
};
+
+#endif // KEEPASSX_DATABASEICONS_H