Build fixes.

This commit is contained in:
Felix Geyer 2010-08-12 21:43:57 +02:00
parent dae532d659
commit b64dbce2da
2 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}

View File

@ -22,6 +22,7 @@
#include <QtCore/QXmlStreamReader>
#include <QtGui/QColor>
#include "TimeInfo.h"
#include "Uuid.h"
class Database;