Skip to content

Commit

Permalink
Internal: cleanup stray debug statements (#4802)
Browse files Browse the repository at this point in the history
* Cleanup stray debug statements

* Revert accidental change
  • Loading branch information
vadi2 committed Feb 15, 2021
1 parent 6d4046e commit a3d5489
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/TArea.cpp
Expand Up @@ -101,7 +101,6 @@ QMap<int, QMap<int, QMultiMap<int, int>>> TArea::koordinatenSystem()
}
kS[x][y].insert(z, id);
}
//qDebug()<< "kS="<<kS;
return kS;
}

Expand Down
3 changes: 0 additions & 3 deletions src/TLuaInterpreter.cpp
Expand Up @@ -1481,7 +1481,6 @@ int TLuaInterpreter::removeMapMenu(lua_State* L)
}
}
}
qDebug() << removeList;
QMapIterator<QString, QStringList> it2(host.mpMap->mpMapper->mp2dMap->mUserActions);
while (it2.hasNext()) {
it2.next();
Expand Down Expand Up @@ -1545,7 +1544,6 @@ int TLuaInterpreter::addMapEvent(lua_State* L)
for (int i = 5; i <= lua_gettop(L); i++) {
actionInfo << lua_tostring(L, i);
}
qDebug() << actionInfo;
Host& host = getHostFromLua(L);
if (host.mpMap) {
if (host.mpMap->mpMapper) {
Expand Down Expand Up @@ -9457,7 +9455,6 @@ int TLuaInterpreter::setLabelStyleSheet(lua_State* L)
std::string label = getVerifiedString(L, __func__, 1, "label").toStdString();
std::string markup = getVerifiedString(L, __func__, 2, "markup").toStdString();
Host& host = getHostFromLua(L);
//qDebug()<<"CSS: name:"<<label<<"<"<<markup<<">";
host.mpConsole->setLabelStyleSheet(label, markup);
return 0;
}
Expand Down
1 change: 0 additions & 1 deletion src/ctelnet.cpp
Expand Up @@ -2742,7 +2742,6 @@ void cTelnet::processSocketData(char* in_buffer, int amount)
if (mNeedDecompression) {
datalen = decompressBuffer(in_buffer, amount, out_buffer);
buffer = out_buffer;
//qDebug() << "buffer:" << buffer;
}
buffer[datalen] = '\0';
if (mpHost->mpConsole->mRecordReplay) {
Expand Down
1 change: 0 additions & 1 deletion src/mudlet.cpp
Expand Up @@ -1385,7 +1385,6 @@ void mudlet::slot_module_clicked(QTableWidgetItem* pItem)
QTableWidgetItem* checkStatus = moduleTable->item(i, 2);
QTableWidgetItem* itemPriority = moduleTable->item(i, 1);
QTableWidgetItem* itemPath = moduleTable->item(i, 3);
qDebug() << itemPath->text();
if (!entry || !checkStatus || !itemPriority || !mpModuleTableHost->mInstalledModules.contains(entry->text())) {
moduleHelpButton->setDisabled(true);
if (checkStatus) {
Expand Down

0 comments on commit a3d5489

Please sign in to comment.