1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00

QDebug reference removal

This commit is contained in:
graffy76 2013-07-01 07:40:47 -05:00
parent 55b115935a
commit 9f6d250463
3 changed files with 0 additions and 6 deletions

View File

@ -9,7 +9,6 @@
#include <QTextCodec>
#include <QFile>
#include <QDebug>
#include <components/files/configurationmanager.hpp>
#include "settingcontainer.hpp"

View File

@ -5,7 +5,6 @@
#include <stdexcept>
#include <sstream>
#include <QDebug>
namespace
{
struct TypeData

View File

@ -1,8 +1,6 @@
#include "refrecordtypedelegate.hpp"
#include "../../model/world/universalid.hpp"
#include <QDebug>
CSVWorld::RefRecordTypeDelegate::RefRecordTypeDelegate
(const std::vector<std::pair<int, QString> > &values, QUndoStack& undoStack, QObject *parent)
: EnumDelegate (values, undoStack, parent)
@ -17,8 +15,6 @@ CSVWorld::RefRecordTypeDelegateFactory::RefRecordTypeDelegateFactory()
std::pair<int, const char *> idPair = CSMWorld::UniversalId::getIdArgPair(i);
mValues.push_back (std::pair<int, QString>(idPair.first, QString::fromUtf8(idPair.second)));
qDebug() << "index: " << mValues.at(i).first << "; value: " << mValues.at(i).second;
}
}