-rw-r--r-- | noncore/apps/opie-console/emulation_handler.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/apps/opie-console/emulation_handler.cpp b/noncore/apps/opie-console/emulation_handler.cpp index 48218e6..9f34d2c 100644 --- a/noncore/apps/opie-console/emulation_handler.cpp +++ b/noncore/apps/opie-console/emulation_handler.cpp @@ -63,17 +63,17 @@ void EmulationHandler::setColor( const QColor& fore, const QColor& back ) { table[i].color = fore; }else if ( i == 1 || i == 11 ) { table[i].color = back; table[i].transparent = 0; }else { table[i].color = defaultCt[i].color; } } -// m_teWid->setColorTable(table ); + m_teWid->setColorTable(table ); m_teWid->update(); } QFont EmulationHandler::font( int id ) { QString name; int size = 0; switch(id ) { default: // fall through case 0: @@ -96,36 +96,36 @@ QFont EmulationHandler::font( int id ) { QColor EmulationHandler::foreColor(int col) { QColor co; /* we need to switch it */ switch( col ) { default: case Profile::White: qWarning("Foreground black"); /* color is black */ - co = Qt::black; + co = Qt::white; break; case Profile::Black: qWarning("Foreground white"); - co = Qt::white; + co = Qt::black; break; } return co; } QColor EmulationHandler::backColor(int col ) { QColor co; /* we need to switch it */ switch( col ) { default: case Profile::White: qWarning("Background white"); /* color is white */ - co = Qt::white; + co = Qt::black; break; case Profile::Black: qWarning("Background black"); - co = Qt::black; + co = Qt::white; break; } return co; } |