This commit is contained in:
Miodrag Milanovic 2018-06-28 13:34:23 +02:00
parent 9cf23d1010
commit 403c2d65a2

View File

@ -72,10 +72,6 @@ void Console::handleReturnKeyPress( )
QString line = getLine( ); QString line = getLine( );
#ifndef NDEBUG
std::cout << line.toStdString( ) << "\n";
#endif
m_parseHelper.process( line.toStdString( ) ); m_parseHelper.process( line.toStdString( ) );
if ( m_parseHelper.buffered( ) ) if ( m_parseHelper.buffered( ) )
{ {
@ -232,7 +228,6 @@ void Console::autocomplete( )
{ {
append(it->c_str()); append(it->c_str());
} }
std::cout << width() << "\n";
setTextColor( NORMAL_COLOR ); setTextColor( NORMAL_COLOR );
} }
} }