mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 07:45:33 +00:00
QDebug reference removal
This commit is contained in:
parent
55b115935a
commit
9f6d250463
3 changed files with 0 additions and 6 deletions
|
@ -9,7 +9,6 @@
|
|||
#include <QTextCodec>
|
||||
|
||||
#include <QFile>
|
||||
#include <QDebug>
|
||||
|
||||
#include <components/files/configurationmanager.hpp>
|
||||
#include "settingcontainer.hpp"
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include <stdexcept>
|
||||
#include <sstream>
|
||||
|
||||
#include <QDebug>
|
||||
namespace
|
||||
{
|
||||
struct TypeData
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue