author | mickeyl <mickeyl> | 2003-09-28 16:22:51 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-09-28 16:22:51 (UTC) |
commit | 33a64fac931c3332bce9fb97e9996dc0e4c9d236 (patch) (side-by-side diff) | |
tree | 521487cf1f50bd8243f60276e7617a9735f0c966 /inputmethods/dasher/QtDasherScreen.cc | |
parent | 651b6c612db4e809c506973996f2580c4158ac3a (diff) | |
download | opie-33a64fac931c3332bce9fb97e9996dc0e4c9d236.zip opie-33a64fac931c3332bce9fb97e9996dc0e4c9d236.tar.gz opie-33a64fac931c3332bce9fb97e9996dc0e4c9d236.tar.bz2 |
remove unnecessary includes
Diffstat (limited to 'inputmethods/dasher/QtDasherScreen.cc') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/dasher/QtDasherScreen.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/inputmethods/dasher/QtDasherScreen.cc b/inputmethods/dasher/QtDasherScreen.cc index 6820105..d05ef49 100644 --- a/inputmethods/dasher/QtDasherScreen.cc +++ b/inputmethods/dasher/QtDasherScreen.cc @@ -3,35 +3,32 @@ // Derived from GtkDasherCanvas.cc // (c) 2002 Philip Cowans #include <iostream> #include <string> #include <qpointarray.h> #include <qpoint.h> #include "QtDasherScreen.h" #include "DasherScreen.h" #include "SettingsStore.h" #define MAXFONTSIZE 25 #define MINFONTSIZE 8 -#include <iconv.h> -#include <iostream> - QtDasherScreen::QtDasherScreen (int _width, int _height, CDasherInterface *_interface, QWidget * _parent, Dasher::CDashEditbox *edit): QWidget(_parent), interface( _interface ), fontname( "fixed" ), // fontsize(12), Dasher::CDasherScreen(_width, _height) { // font = new QFont (fontname, fontsize); painter = new QPainter (); pixmap = new QPixmap (_width, _height); pixmap->setOptimization(QPixmap::BestOptim); interface->SetSettingsStore(new CSettingsStore); interface->ChangeLanguageModel(0); interface->ChangeView(0); |