From b64dbce2da993e09d1fd5889d0db575669941364 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Thu, 12 Aug 2010 21:43:57 +0200 Subject: [PATCH] Build fixes. --- src/core/Parser.cpp | 2 +- src/core/Parser.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/Parser.cpp b/src/core/Parser.cpp index 099c1989..0b0d1365 100644 --- a/src/core/Parser.cpp +++ b/src/core/Parser.cpp @@ -212,7 +212,7 @@ void Parser::parseRoot() while (!m_xml.error() && m_xml.readNextStartElement()) { if (m_xml.name() == "Group") { Group* rootGroup = parseGroup(); - if (rootgroup) { + if (rootGroup) { rootGroup->setParent(m_db); } } diff --git a/src/core/Parser.h b/src/core/Parser.h index 5b22185b..ff2e2f8e 100644 --- a/src/core/Parser.h +++ b/src/core/Parser.h @@ -22,6 +22,7 @@ #include #include +#include "TimeInfo.h" #include "Uuid.h" class Database;