remove some accidentally commited debug output

This commit is contained in:
hjk
2009-01-07 18:11:40 +01:00
parent f85c38621b
commit 92e447e987

View File

@@ -431,10 +431,6 @@ void FakeVimHandler::Private::updateMiniBuffer()
}
}
}
int w = columnsOnScreen();
if (w > 1 && msg.size() > w - 20)
msg = ">" + msg.right(w - 19);
qDebug() << "W: " << w << " MSG: " << msg;
emit q->commandBufferChanged(msg);
int linesInDoc = linesInDocument();
@@ -1172,7 +1168,7 @@ int FakeVimHandler::Private::columnsOnScreen() const
if (!editor())
return 1;
QRect rect = EDITOR(cursorRect());
qDebug() << "WID: " << EDITOR(width()) << "RECT: " << rect;
// qDebug() << "WID: " << EDITOR(width()) << "RECT: " << rect;
return EDITOR(width()) / rect.width();
}