-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | libkdepim/externalapphandler.cpp | 36 |
2 files changed, 22 insertions, 16 deletions
@@ -1,15 +1,15 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | # Makefile for building: kopi-desktop | 2 | # Makefile for building: kopi-desktop |
3 | # Generated by qmake (1.07a) (Qt 3.3.3) on: Mon Aug 9 13:18:13 2004 | 3 | # Generated by qmake (1.07a) (Qt 3.3.3) on: Tue Aug 10 18:20:15 2004 |
4 | # Project: kopi-desktop.pro | 4 | # Project: kopi-desktop.pro |
5 | # Template: subdirs | 5 | # Template: subdirs |
6 | # Command: $(QMAKE) "CONFIG+=thread" "CONFIG+=debug" -o Makefile kopi-desktop.pro | 6 | # Command: $(QMAKE) "CONFIG+=thread" "CONFIG+=debug" -o Makefile kopi-desktop.pro |
7 | ############################################################################# | 7 | ############################################################################# |
8 | 8 | ||
9 | MAKEFILE =Makefile | 9 | MAKEFILE =Makefile |
10 | QMAKE =qmake | 10 | QMAKE =qmake |
11 | DEL_FILE = rm -f | 11 | DEL_FILE = rm -f |
12 | CHK_DIR_EXISTS= test -d | 12 | CHK_DIR_EXISTS= test -d |
13 | MKDIR = mkdir -p | 13 | MKDIR = mkdir -p |
14 | INSTALL_FILE= | 14 | INSTALL_FILE= |
15 | INSTALL_DIR = | 15 | INSTALL_DIR = |
diff --git a/libkdepim/externalapphandler.cpp b/libkdepim/externalapphandler.cpp index 6f812d0..0128cf7 100644 --- a/libkdepim/externalapphandler.cpp +++ b/libkdepim/externalapphandler.cpp | |||
@@ -22,30 +22,32 @@ | |||
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* | 24 | /* |
25 | Enhanced Version of the file for platform independent KDE tools. | 25 | Enhanced Version of the file for platform independent KDE tools. |
26 | Copyright (c) 2004 Ulf Schenk | 26 | Copyright (c) 2004 Ulf Schenk |
27 | 27 | ||
28 | $Id$ | 28 | $Id$ |
29 | */ | 29 | */ |
30 | #include <stdlib.h> | 30 | #include <stdlib.h> |
31 | 31 | ||
32 | #include <qfile.h> | 32 | #include <qfile.h> |
33 | #include <qmap.h> | 33 | #include <qmap.h> |
34 | #include <qregexp.h> | ||
34 | 35 | ||
35 | 36 | #ifndef DESKTOP_VERSION | |
36 | #include <qtopia/qcopenvelope_qws.h> | 37 | #include <qtopia/qcopenvelope_qws.h> |
37 | 38 | #endif | |
38 | 39 | ||
39 | #include <kstaticdeleter.h> | 40 | #include <kstaticdeleter.h> |
41 | #include <kmessagebox.h> | ||
40 | 42 | ||
41 | 43 | ||
42 | #include "externalapphandler.h" | 44 | #include "externalapphandler.h" |
43 | 45 | ||
44 | #include "kpimglobalprefs.h" | 46 | #include "kpimglobalprefs.h" |
45 | 47 | ||
46 | 48 | ||
47 | 49 | ||
48 | 50 | ||
49 | 51 | ||
50 | 52 | ||
51 | 53 | ||
@@ -159,25 +161,26 @@ DefaultAppItem* ExternalAppHandler::getDefaultItem(Types type, int clientid) | |||
159 | if (dai->_type == type && dai->_id == clientid) | 161 | if (dai->_type == type && dai->_id == clientid) |
160 | return dai; | 162 | return dai; |
161 | } | 163 | } |
162 | 164 | ||
163 | return 0; | 165 | return 0; |
164 | } | 166 | } |
165 | 167 | ||
166 | 168 | ||
167 | 169 | ||
168 | //calls the emailapplication with a number of attachments that need to be send (Seperated by Comma) | 170 | //calls the emailapplication with a number of attachments that need to be send (Seperated by Comma) |
169 | bool ExternalAppHandler::mailAttachments( const QString& urls ) | 171 | bool ExternalAppHandler::mailAttachments( const QString& urls ) |
170 | { | 172 | { |
171 | #ifndef QT_NO_COP | 173 | |
174 | #ifndef DESKTOP_VERSION | ||
172 | QString channel; | 175 | QString channel; |
173 | QString message2; | 176 | QString message2; |
174 | QString parameters2; | 177 | QString parameters2; |
175 | 178 | ||
176 | 179 | ||
177 | int client = KPimGlobalPrefs::instance()->mEmailClient; | 180 | int client = KPimGlobalPrefs::instance()->mEmailClient; |
178 | if (client == KPimGlobalPrefs::OTHER_EMC) | 181 | if (client == KPimGlobalPrefs::OTHER_EMC) |
179 | { | 182 | { |
180 | channel = KPimGlobalPrefs::instance()->mEmailOtherChannel; | 183 | channel = KPimGlobalPrefs::instance()->mEmailOtherChannel; |
181 | message2 = KPimGlobalPrefs::instance()->mEmailOtherMessage; | 184 | message2 = KPimGlobalPrefs::instance()->mEmailOtherMessage; |
182 | parameters2 = KPimGlobalPrefs::instance()->mEmailOtherMessageParameters; | 185 | parameters2 = KPimGlobalPrefs::instance()->mEmailOtherMessageParameters; |
183 | } | 186 | } |
@@ -189,43 +192,45 @@ bool ExternalAppHandler::mailAttachments( const QString& urls ) | |||
189 | qDebug("could not find configured email application."); | 192 | qDebug("could not find configured email application."); |
190 | return false; | 193 | return false; |
191 | } | 194 | } |
192 | channel = dai->_channel; | 195 | channel = dai->_channel; |
193 | message2 = dai->_message2; | 196 | message2 = dai->_message2; |
194 | parameters2 = dai->_parameters2; | 197 | parameters2 = dai->_parameters2; |
195 | } | 198 | } |
196 | 199 | ||
197 | 200 | ||
198 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message2.latin1()); | 201 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message2.latin1()); |
199 | qDebug("passing attachmenturls:(%s) as parameter in the form %s to QCopEnvelope", urls.latin1(), parameters2.latin1()); | 202 | qDebug("passing attachmenturls:(%s) as parameter in the form %s to QCopEnvelope", urls.latin1(), parameters2.latin1()); |
200 | 203 | ||
204 | |||
201 | QCopEnvelope e(channel.latin1(), message2.latin1()); | 205 | QCopEnvelope e(channel.latin1(), message2.latin1()); |
202 | //US we need no names in the To field. The emailadresses are enough | 206 | //US we need no names in the To field. The emailadresses are enough |
203 | 207 | ||
204 | passParameter(&e, parameters2, urls); | 208 | passParameter(&e, parameters2, urls); |
205 | 209 | ||
206 | 210 | ||
211 | |||
207 | #else | 212 | #else |
208 | KMessageBox::sorry( this, i18n( "This version does not support the sending of emails." ) ); | 213 | KMessageBox::sorry( 0, i18n( "This version does not support the sending of emails." ) ); |
209 | #endif | 214 | #endif |
210 | 215 | ||
211 | return true; | 216 | return true; |
212 | } | 217 | } |
213 | 218 | ||
214 | 219 | ||
215 | 220 | ||
216 | //calls the emailapplication and creates a mail with parameter emails as recipients | 221 | //calls the emailapplication and creates a mail with parameter emails as recipients |
217 | bool ExternalAppHandler::mailToContacts( const QString& emails ) | 222 | bool ExternalAppHandler::mailToContacts( const QString& emails ) |
218 | { | 223 | { |
219 | #ifndef QT_NO_COP | 224 | #ifndef DESKTOP_VERSION |
220 | QString channel; | 225 | QString channel; |
221 | QString message; | 226 | QString message; |
222 | QString parameters; | 227 | QString parameters; |
223 | 228 | ||
224 | 229 | ||
225 | int client = KPimGlobalPrefs::instance()->mEmailClient; | 230 | int client = KPimGlobalPrefs::instance()->mEmailClient; |
226 | if (client == KPimGlobalPrefs::OTHER_EMC) | 231 | if (client == KPimGlobalPrefs::OTHER_EMC) |
227 | { | 232 | { |
228 | channel = KPimGlobalPrefs::instance()->mEmailOtherChannel; | 233 | channel = KPimGlobalPrefs::instance()->mEmailOtherChannel; |
229 | message = KPimGlobalPrefs::instance()->mEmailOtherMessage; | 234 | message = KPimGlobalPrefs::instance()->mEmailOtherMessage; |
230 | parameters = KPimGlobalPrefs::instance()->mEmailOtherMessageParameters; | 235 | parameters = KPimGlobalPrefs::instance()->mEmailOtherMessageParameters; |
231 | } | 236 | } |
@@ -248,36 +253,36 @@ bool ExternalAppHandler::mailToContacts( const QString& emails ) | |||
248 | 253 | ||
249 | 254 | ||
250 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); | 255 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); |
251 | qDebug("passing emailadresses:(%s) as parameter in the form %s to QCopEnvelope", emails.latin1(), parameters.latin1()); | 256 | qDebug("passing emailadresses:(%s) as parameter in the form %s to QCopEnvelope", emails.latin1(), parameters.latin1()); |
252 | 257 | ||
253 | QCopEnvelope e(channel.latin1(), message.latin1()); | 258 | QCopEnvelope e(channel.latin1(), message.latin1()); |
254 | //US we need no names in the To field. The emailadresses are enough | 259 | //US we need no names in the To field. The emailadresses are enough |
255 | 260 | ||
256 | passParameter(&e, parameters, emails); | 261 | passParameter(&e, parameters, emails); |
257 | 262 | ||
258 | 263 | ||
259 | #else | 264 | #else |
260 | KMessageBox::sorry( this, i18n( "This version does not support the sending of emails." ) ); | 265 | KMessageBox::sorry( 0, i18n( "This version does not support the sending of emails." ) ); |
261 | #endif | 266 | #endif |
262 | 267 | ||
263 | 268 | ||
264 | return true; | 269 | return true; |
265 | } | 270 | } |
266 | 271 | ||
267 | 272 | ||
268 | //calls the phoneapplication with the number | 273 | //calls the phoneapplication with the number |
269 | bool ExternalAppHandler::callByPhone( const QString& phonenumber ) | 274 | bool ExternalAppHandler::callByPhone( const QString& phonenumber ) |
270 | { | 275 | { |
271 | #ifndef QT_NO_COP | 276 | #ifndef DESKTOP_VERSION |
272 | QString channel; | 277 | QString channel; |
273 | QString message; | 278 | QString message; |
274 | QString parameters; | 279 | QString parameters; |
275 | 280 | ||
276 | 281 | ||
277 | int client = KPimGlobalPrefs::instance()->mPhoneClient; | 282 | int client = KPimGlobalPrefs::instance()->mPhoneClient; |
278 | if (client == KPimGlobalPrefs::OTHER_PHC) | 283 | if (client == KPimGlobalPrefs::OTHER_PHC) |
279 | { | 284 | { |
280 | channel = KPimGlobalPrefs::instance()->mPhoneOtherChannel; | 285 | channel = KPimGlobalPrefs::instance()->mPhoneOtherChannel; |
281 | message = KPimGlobalPrefs::instance()->mPhoneOtherMessage; | 286 | message = KPimGlobalPrefs::instance()->mPhoneOtherMessage; |
282 | parameters = KPimGlobalPrefs::instance()->mPhoneOtherMessageParameters; | 287 | parameters = KPimGlobalPrefs::instance()->mPhoneOtherMessageParameters; |
283 | } | 288 | } |
@@ -300,35 +305,35 @@ bool ExternalAppHandler::callByPhone( const QString& phonenumber ) | |||
300 | 305 | ||
301 | 306 | ||
302 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); | 307 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); |
303 | qDebug("passing phonenumber:(%s) as parameter in the form %s to QCopEnvelope", phonenumber.latin1(), parameters.latin1()); | 308 | qDebug("passing phonenumber:(%s) as parameter in the form %s to QCopEnvelope", phonenumber.latin1(), parameters.latin1()); |
304 | 309 | ||
305 | QCopEnvelope e(channel.latin1(), message.latin1()); | 310 | QCopEnvelope e(channel.latin1(), message.latin1()); |
306 | //US we need no names in the To field. The emailadresses are enough | 311 | //US we need no names in the To field. The emailadresses are enough |
307 | 312 | ||
308 | passParameter(&e, parameters, phonenumber); | 313 | passParameter(&e, parameters, phonenumber); |
309 | 314 | ||
310 | 315 | ||
311 | #else | 316 | #else |
312 | KMessageBox::sorry( this, i18n( "This version does not support phonecalls." ) ); | 317 | KMessageBox::sorry( 0, i18n( "This version does not support phonecalls." ) ); |
313 | #endif | 318 | #endif |
314 | 319 | ||
315 | 320 | ||
316 | return true; | 321 | return true; |
317 | } | 322 | } |
318 | 323 | ||
319 | //calls the smsapplication with the number | 324 | //calls the smsapplication with the number |
320 | bool ExternalAppHandler::callBySMS( const QString& phonenumber ) | 325 | bool ExternalAppHandler::callBySMS( const QString& phonenumber ) |
321 | { | 326 | { |
322 | #ifndef QT_NO_COP | 327 | #ifndef DESKTOP_VERSION |
323 | QString channel; | 328 | QString channel; |
324 | QString message; | 329 | QString message; |
325 | QString parameters; | 330 | QString parameters; |
326 | 331 | ||
327 | 332 | ||
328 | int client = KPimGlobalPrefs::instance()->mSMSClient; | 333 | int client = KPimGlobalPrefs::instance()->mSMSClient; |
329 | if (client == KPimGlobalPrefs::OTHER_SMC) | 334 | if (client == KPimGlobalPrefs::OTHER_SMC) |
330 | { | 335 | { |
331 | channel = KPimGlobalPrefs::instance()->mSMSOtherChannel; | 336 | channel = KPimGlobalPrefs::instance()->mSMSOtherChannel; |
332 | message = KPimGlobalPrefs::instance()->mSMSOtherMessage; | 337 | message = KPimGlobalPrefs::instance()->mSMSOtherMessage; |
333 | parameters = KPimGlobalPrefs::instance()->mSMSOtherMessageParameters; | 338 | parameters = KPimGlobalPrefs::instance()->mSMSOtherMessageParameters; |
334 | } | 339 | } |
@@ -351,35 +356,35 @@ bool ExternalAppHandler::callBySMS( const QString& phonenumber ) | |||
351 | 356 | ||
352 | 357 | ||
353 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); | 358 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); |
354 | qDebug("passing phonenumber:(%s) as parameter in the form %s to QCopEnvelope", phonenumber.latin1(), parameters.latin1()); | 359 | qDebug("passing phonenumber:(%s) as parameter in the form %s to QCopEnvelope", phonenumber.latin1(), parameters.latin1()); |
355 | 360 | ||
356 | QCopEnvelope e(channel.latin1(), message.latin1()); | 361 | QCopEnvelope e(channel.latin1(), message.latin1()); |
357 | //US we need no names in the To field. The emailadresses are enough | 362 | //US we need no names in the To field. The emailadresses are enough |
358 | 363 | ||
359 | passParameter(&e, parameters, phonenumber); | 364 | passParameter(&e, parameters, phonenumber); |
360 | 365 | ||
361 | 366 | ||
362 | #else | 367 | #else |
363 | KMessageBox::sorry( this, i18n( "This version does not support the sending of sms." ) ); | 368 | KMessageBox::sorry( 0, i18n( "This version does not support the sending of sms." ) ); |
364 | #endif | 369 | #endif |
365 | 370 | ||
366 | 371 | ||
367 | return true; | 372 | return true; |
368 | } | 373 | } |
369 | 374 | ||
370 | //calls the pagerapplication with the number | 375 | //calls the pagerapplication with the number |
371 | bool ExternalAppHandler::callByPager( const QString& pagernumber ) | 376 | bool ExternalAppHandler::callByPager( const QString& pagernumber ) |
372 | { | 377 | { |
373 | #ifndef QT_NO_COP | 378 | #ifndef DESKTOP_VERSION |
374 | QString channel; | 379 | QString channel; |
375 | QString message; | 380 | QString message; |
376 | QString parameters; | 381 | QString parameters; |
377 | 382 | ||
378 | 383 | ||
379 | int client = KPimGlobalPrefs::instance()->mPagerClient; | 384 | int client = KPimGlobalPrefs::instance()->mPagerClient; |
380 | if (client == KPimGlobalPrefs::OTHER_PAC) | 385 | if (client == KPimGlobalPrefs::OTHER_PAC) |
381 | { | 386 | { |
382 | channel = KPimGlobalPrefs::instance()->mPagerOtherChannel; | 387 | channel = KPimGlobalPrefs::instance()->mPagerOtherChannel; |
383 | message = KPimGlobalPrefs::instance()->mPagerOtherMessage; | 388 | message = KPimGlobalPrefs::instance()->mPagerOtherMessage; |
384 | parameters = KPimGlobalPrefs::instance()->mPagerOtherMessageParameters; | 389 | parameters = KPimGlobalPrefs::instance()->mPagerOtherMessageParameters; |
385 | } | 390 | } |
@@ -402,35 +407,35 @@ bool ExternalAppHandler::callByPager( const QString& pagernumber ) | |||
402 | 407 | ||
403 | 408 | ||
404 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); | 409 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); |
405 | qDebug("passing pagernumber:(%s) as parameter in the form %s to QCopEnvelope", pagernumber.latin1(), parameters.latin1()); | 410 | qDebug("passing pagernumber:(%s) as parameter in the form %s to QCopEnvelope", pagernumber.latin1(), parameters.latin1()); |
406 | 411 | ||
407 | QCopEnvelope e(channel.latin1(), message.latin1()); | 412 | QCopEnvelope e(channel.latin1(), message.latin1()); |
408 | //US we need no names in the To field. The emailadresses are enough | 413 | //US we need no names in the To field. The emailadresses are enough |
409 | 414 | ||
410 | passParameter(&e, parameters, pagernumber); | 415 | passParameter(&e, parameters, pagernumber); |
411 | 416 | ||
412 | 417 | ||
413 | #else | 418 | #else |
414 | KMessageBox::sorry( this, i18n( "This version does not support paging." ) ); | 419 | KMessageBox::sorry( 0, i18n( "This version does not support paging." ) ); |
415 | #endif | 420 | #endif |
416 | 421 | ||
417 | 422 | ||
418 | return true; | 423 | return true; |
419 | } | 424 | } |
420 | 425 | ||
421 | //calls the faxapplication with the number | 426 | //calls the faxapplication with the number |
422 | bool ExternalAppHandler::callByFax( const QString& faxnumber ) | 427 | bool ExternalAppHandler::callByFax( const QString& faxnumber ) |
423 | { | 428 | { |
424 | #ifndef QT_NO_COP | 429 | #ifndef DESKTOP_VERSION |
425 | QString channel; | 430 | QString channel; |
426 | QString message; | 431 | QString message; |
427 | QString parameters; | 432 | QString parameters; |
428 | 433 | ||
429 | 434 | ||
430 | int client = KPimGlobalPrefs::instance()->mFaxClient; | 435 | int client = KPimGlobalPrefs::instance()->mFaxClient; |
431 | if (client == KPimGlobalPrefs::OTHER_FAC) | 436 | if (client == KPimGlobalPrefs::OTHER_FAC) |
432 | { | 437 | { |
433 | channel = KPimGlobalPrefs::instance()->mFaxOtherChannel; | 438 | channel = KPimGlobalPrefs::instance()->mFaxOtherChannel; |
434 | message = KPimGlobalPrefs::instance()->mFaxOtherMessage; | 439 | message = KPimGlobalPrefs::instance()->mFaxOtherMessage; |
435 | parameters = KPimGlobalPrefs::instance()->mFaxOtherMessageParameters; | 440 | parameters = KPimGlobalPrefs::instance()->mFaxOtherMessageParameters; |
436 | } | 441 | } |
@@ -453,43 +458,44 @@ bool ExternalAppHandler::callByFax( const QString& faxnumber ) | |||
453 | 458 | ||
454 | 459 | ||
455 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); | 460 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", channel.latin1(), message.latin1()); |
456 | qDebug("passing faxnumber:(%s) as parameter in the form %s to QCopEnvelope", faxnumber.latin1(), parameters.latin1()); | 461 | qDebug("passing faxnumber:(%s) as parameter in the form %s to QCopEnvelope", faxnumber.latin1(), parameters.latin1()); |
457 | 462 | ||
458 | QCopEnvelope e(channel.latin1(), message.latin1()); | 463 | QCopEnvelope e(channel.latin1(), message.latin1()); |
459 | //US we need no names in the To field. The emailadresses are enough | 464 | //US we need no names in the To field. The emailadresses are enough |
460 | 465 | ||
461 | passParameter(&e, parameters, faxnumber); | 466 | passParameter(&e, parameters, faxnumber); |
462 | 467 | ||
463 | 468 | ||
464 | #else | 469 | #else |
465 | KMessageBox::sorry( this, i18n( "This version does not support the sending of faxes." ) ); | 470 | KMessageBox::sorry( 0, i18n( "This version does not support the sending of faxes." ) ); |
466 | #endif | 471 | #endif |
467 | 472 | ||
468 | 473 | ||
469 | return true; | 474 | return true; |
470 | } | 475 | } |
471 | 476 | ||
472 | 477 | ||
473 | 478 | ||
474 | 479 | ||
475 | 480 | ||
476 | 481 | ||
477 | QString& ExternalAppHandler::translateMessage(QString& message, const QString& param1) const | 482 | QString& ExternalAppHandler::translateMessage(QString& message, const QString& param1) const |
478 | { | 483 | { |
479 | return message.replace( QRegExp("%1"), param1 ); | 484 | return message.replace( QRegExp("%1"), param1 ); |
480 | } | 485 | } |
481 | 486 | ||
482 | void ExternalAppHandler::passParameter(QCopEnvelope* e, const QString& parameters, const QString& param1) const | 487 | void ExternalAppHandler::passParameter(QCopEnvelope* e, const QString& parameters, const QString& param1) const |
483 | { | 488 | { |
489 | #ifndef DESKTOP_VERSION | ||
484 | QMap<QString, QString> valmap; | 490 | QMap<QString, QString> valmap; |
485 | bool useValMap = false; | 491 | bool useValMap = false; |
486 | 492 | ||
487 | // first extract all parts of the parameters. | 493 | // first extract all parts of the parameters. |
488 | QStringList paramlist = QStringList::split(";", parameters); | 494 | QStringList paramlist = QStringList::split(";", parameters); |
489 | 495 | ||
490 | //Now check how many parts we have. | 496 | //Now check how many parts we have. |
491 | //=0 :no params to pass | 497 | //=0 :no params to pass |
492 | //>0 :parameters to pass | 498 | //>0 :parameters to pass |
493 | for ( QStringList::Iterator it = paramlist.begin(); it != paramlist.end(); ++it ) | 499 | for ( QStringList::Iterator it = paramlist.begin(); it != paramlist.end(); ++it ) |
494 | { | 500 | { |
495 | QString param = (*it); | 501 | QString param = (*it); |
@@ -509,18 +515,18 @@ void ExternalAppHandler::passParameter(QCopEnvelope* e, const QString& parameter | |||
509 | valmap.insert(key, value); | 515 | valmap.insert(key, value); |
510 | useValMap = true; | 516 | useValMap = true; |
511 | } | 517 | } |
512 | else | 518 | else |
513 | { | 519 | { |
514 | (*e) << key.latin1(); | 520 | (*e) << key.latin1(); |
515 | } | 521 | } |
516 | } | 522 | } |
517 | 523 | ||
518 | if (useValMap == true) | 524 | if (useValMap == true) |
519 | (*e) << valmap; | 525 | (*e) << valmap; |
520 | 526 | ||
521 | 527 | #endif | |
522 | 528 | ||
523 | } | 529 | } |
524 | 530 | ||
525 | 531 | ||
526 | 532 | ||