summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/emulation_handler.cpp
authorzecke <zecke>2004-10-16 21:06:28 (UTC)
committer zecke <zecke>2004-10-16 21:06:28 (UTC)
commit999a0f2d22f132005bde62558ace48a0ce8b1dcc (patch) (unidiff)
tree75f528b52a8a89289925e62bbd4c48d316c8ddcf /noncore/apps/opie-console/emulation_handler.cpp
parente70f226f5c4c2f488f6c4406034a04e128c0ca93 (diff)
downloadopie-999a0f2d22f132005bde62558ace48a0ce8b1dcc.zip
opie-999a0f2d22f132005bde62558ace48a0ce8b1dcc.tar.gz
opie-999a0f2d22f132005bde62558ace48a0ce8b1dcc.tar.bz2
-Remove never finished classes by ibotty for the console widget
-Put setCurrent into ComboboxHelper and remove duplication from the dialogs -Remove old and unneeded debug output -IOBt, IOIrda can share the implementation for sening,recieving and supports with IOSerial
Diffstat (limited to 'noncore/apps/opie-console/emulation_handler.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/emulation_handler.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/noncore/apps/opie-console/emulation_handler.cpp b/noncore/apps/opie-console/emulation_handler.cpp
index e045aef..986ae8d 100644
--- a/noncore/apps/opie-console/emulation_handler.cpp
+++ b/noncore/apps/opie-console/emulation_handler.cpp
@@ -4,14 +4,9 @@
4#include "script.h" 4#include "script.h"
5#include "logger.h" 5#include "logger.h"
6 6
7/* OPIE */
8#include <opie2/odebug.h>
9
10#include <qfile.h> 7#include <qfile.h>
11#include <qtextstream.h> 8#include <qtextstream.h>
12 9
13using namespace Opie::Core;
14
15EmulationHandler::EmulationHandler( const Profile& prof, QWidget* parent,const char* name ) 10EmulationHandler::EmulationHandler( const Profile& prof, QWidget* parent,const char* name )
16 : QObject(0, name ) 11 : QObject(0, name )
17{ 12{
@@ -148,11 +143,9 @@ QColor EmulationHandler::foreColor(int col) {
148 co = Qt::black; 143 co = Qt::black;
149 break; 144 break;
150 case Profile::Green: 145 case Profile::Green:
151 owarn << "Foreground green" << oendl;
152 co = Qt::green; 146 co = Qt::green;
153 break; 147 break;
154 case Profile::Orange: 148 case Profile::Orange:
155 owarn << "Foreground orange" << oendl;
156 co.setRgb( 231, 184, 98 ); 149 co.setRgb( 231, 184, 98 );
157 break; 150 break;
158 } 151 }
@@ -172,11 +165,9 @@ QColor EmulationHandler::backColor(int col ) {
172 co = Qt::white; 165 co = Qt::white;
173 break; 166 break;
174 case Profile::Green: 167 case Profile::Green:
175 owarn << "Background black" << oendl;
176 co = Qt::black; 168 co = Qt::black;
177 break; 169 break;
178 case Profile::Orange: 170 case Profile::Orange:
179 owarn << "Background black" << oendl;
180 co = Qt::black; 171 co = Qt::black;
181 break; 172 break;
182 } 173 }