summaryrefslogtreecommitdiff
path: root/inputmethods
authorbrad <brad>2004-04-16 15:32:25 (UTC)
committer brad <brad>2004-04-16 15:32:25 (UTC)
commit96ae95dd09bbe982555d434159cfea95fa24a2ca (patch) (unidiff)
tree13230ca6493a33903bc04ab0f42b7eed3432199e /inputmethods
parent3e60dc2a9bd0860feae3ebebdfd5f25ad3ce3b13 (diff)
downloadopie-96ae95dd09bbe982555d434159cfea95fa24a2ca.zip
opie-96ae95dd09bbe982555d434159cfea95fa24a2ca.tar.gz
opie-96ae95dd09bbe982555d434159cfea95fa24a2ca.tar.bz2
Now the graffiti charset is commited, remove the dirty hack I put in a while back.
Diffstat (limited to 'inputmethods') (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/handwriting/qimpenprofile.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/inputmethods/handwriting/qimpenprofile.cpp b/inputmethods/handwriting/qimpenprofile.cpp
index 67343c3..180b0b0 100644
--- a/inputmethods/handwriting/qimpenprofile.cpp
+++ b/inputmethods/handwriting/qimpenprofile.cpp
@@ -151,26 +151,24 @@ void QIMPenProfile::loadData()
151 it.current()->setCharacter( QChar(ch).upper() ); 151 it.current()->setCharacter( QChar(ch).upper() );
152 } 152 }
153 if ( combining ) 153 if ( combining )
154 combining->addCombined( cs ); 154 combining->addCombined( cs );
155 sets.append( cs ); 155 sets.append( cs );
156 } else { 156 } else {
157 delete cs; 157 delete cs;
158 } 158 }
159 } 159 }
160 cs = new QIMPenCharSet( baseDir + "qimpen/" + s ); 160 cs = new QIMPenCharSet( baseDir + "qimpen/" + s );
161 cs->load( Global::applicationFileName("qimpen",s), QIMPenCharSet::User ); 161 cs->load( Global::applicationFileName("qimpen",s), QIMPenCharSet::User );
162 if ( !cs->isEmpty() ) { 162 if ( !cs->isEmpty() ) {
163 if ( mono () )
164 cs->setDescription( "Latin Characters" );
165 if ( combining ) 163 if ( combining )
166 combining->addCombined( cs ); 164 combining->addCombined( cs );
167 sets.append( cs ); 165 sets.append( cs );
168 } else { 166 } else {
169 delete cs; 167 delete cs;
170 } 168 }
171 } 169 }
172 // numeric (may comtain punctuation and symbols) 170 // numeric (may comtain punctuation and symbols)
173 s = config.readEntry( "Numeric" ); 171 s = config.readEntry( "Numeric" );
174 if ( !s.isEmpty() ) { 172 if ( !s.isEmpty() ) {
175 cs = new QIMPenCharSet( baseDir + "qimpen/" + s ); 173 cs = new QIMPenCharSet( baseDir + "qimpen/" + s );
176 cs->load( Global::applicationFileName("qimpen",s), QIMPenCharSet::User ); 174 cs->load( Global::applicationFileName("qimpen",s), QIMPenCharSet::User );