remove old debugging output

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=957196
This commit is contained in:
Kurt Hindenburg
2009-04-21 15:10:38 +00:00
parent b05607ee5f
commit ac17e1eaaa

View File

@@ -542,7 +542,6 @@ void Session::monitorTimerDone()
}
void Session::updateFlowControlState(bool suspended)
{
kDebug()<<"suspend "<<suspended<<"; flowenable "<<flowControlEnabled()<<endl;
if (suspended)
{
if (flowControlEnabled())
@@ -997,12 +996,10 @@ void Session::setFlowControlEnabled(bool enabled)
if (_shellProcess)
_shellProcess->setFlowControlEnabled(_flowControl);
kDebug()<<"flow "<<enabled<<"; shell "<<_shellProcess<<endl;
emit flowControlEnabledChanged(enabled);
}
bool Session::flowControlEnabled() const
{
kDebug()<<"_shellProcess "<<_shellProcess->flowControlEnabled()<<"; else _flow "<<_flowControl<<endl;
if (_shellProcess)
return _shellProcess->flowControlEnabled();
else