author | zecke <zecke> | 2004-02-25 20:55:24 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-02-25 20:55:24 (UTC) |
commit | ad8cbdb693ecccd2a67a8294014360b70ad4253a (patch) (side-by-side diff) | |
tree | c0d3bdc8d3b3d143d195170fee2cc54045840fa6 | |
parent | ddab47e21543e806a7de978985f77ea2b9e8c214 (diff) | |
download | opie-ad8cbdb693ecccd2a67a8294014360b70ad4253a.zip opie-ad8cbdb693ecccd2a67a8294014360b70ad4253a.tar.gz opie-ad8cbdb693ecccd2a67a8294014360b70ad4253a.tar.bz2 |
remove the stupid #ifdef __i386__
We're on Opie and don't need to mess with Qtopia..
we fix up broken Qt usage of legacy via a __weak__ symbol hack
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 1c613a9..2c0001f 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -421,28 +421,26 @@ void Konsole::init(const char* _pgm, QStrList & _args) int size; if (i >= (uint)sizes.count()) { // try for expandable fonts size = sizes[sizes.count()-1] + 2 * (i - sizes.count() + 1); } else { printf("sizes[%d] = %d\n", i, sizes[i]); size = sizes[i]; } -#ifndef __i386__ // a hack, sizes on Z seem to be points*10 size /= 10; -#endif f = QFont(familyNames[j], size); f.setFixedPitch(true); QFontMetrics fm(f); // don't trust f.fixedPitch() or f.exactMatch(), they lie!! if (fm.width("l") == fm.width("m") && (i < (uint)sizes.count() || fm.width("m") > last_width)) { if (i < (uint)sizes.count()) { last_width = fm.width("m"); |