author | hash <hash> | 2002-11-25 10:07:40 (UTC) |
---|---|---|
committer | hash <hash> | 2002-11-25 10:07:40 (UTC) |
commit | 6525f85bff4ef02e6636e1b9cfdb3440cdeed78c (patch) (side-by-side diff) | |
tree | 7f56d4a76fa0a54be9233f15749351dee2f9d753 /inputmethods/handwriting/qimpensetup.cpp | |
parent | e73898d0cda891308115871bfbfa4a2739275c6a (diff) | |
download | opie-6525f85bff4ef02e6636e1b9cfdb3440cdeed78c.zip opie-6525f85bff4ef02e6636e1b9cfdb3440cdeed78c.tar.gz opie-6525f85bff4ef02e6636e1b9cfdb3440cdeed78c.tar.bz2 |
for now, lets just disable the charset selection... there is something very
wrong with it.
Diffstat (limited to 'inputmethods/handwriting/qimpensetup.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/handwriting/qimpensetup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inputmethods/handwriting/qimpensetup.cpp b/inputmethods/handwriting/qimpensetup.cpp index 5d49e03..10c136d 100644 --- a/inputmethods/handwriting/qimpensetup.cpp +++ b/inputmethods/handwriting/qimpensetup.cpp @@ -72,49 +72,49 @@ static const char * const right_xpm[] = { " . ", " .. ", " ... ", " .... ", " ..... ", " ...... ", " ..... ", " .... ", " ... ", " .. ", " . ", " ", " "}; QIMPenSetup::QIMPenSetup( QIMPenProfile *p, QWidget *parent, const char *name, bool modal, int WFlags ) : QDialog( parent, name, modal, WFlags ), profileCombo(0), profile(p) { setCaption( tr("Setup Handwriting Input") ); QVBoxLayout *vb = new QVBoxLayout( this ); -#if 1 +#if 0 profileList.setAutoDelete( true ); QHBoxLayout *hb = new QHBoxLayout( vb ); hb->setMargin( 6 ); QLabel *l = new QLabel( tr("Character Profile:"), this ); hb->addWidget( l ); profileCombo = new QComboBox( this ); connect( profileCombo, SIGNAL(activated(const QString &)), this, SLOT(selectProfile(const QString &)) ); hb->addWidget( profileCombo ); loadProfiles(); #else profileList.append( profile ); #endif QTabWidget *tw = new QTabWidget( this ); vb->addWidget( tw ); pref = new QIMPenPrefBase( this ); tw->addTab( pref, tr("Preferences") ); pref->inputStyle->setExclusive( TRUE ); style = profile->style() == QIMPenProfile::ToggleCases ? 1 : 0; pref->inputStyle->setButton( style ); |