author | tille <tille> | 2003-06-17 11:26:43 (UTC) |
---|---|---|
committer | tille <tille> | 2003-06-17 11:26:43 (UTC) |
commit | 930291d6f7ed63862c9500faf4cddc89e6ee634f (patch) (unidiff) | |
tree | 0d7783ada63c9eab6bd14177f9a572cea8287af8 | |
parent | 1cde4e1ee517c669446125b8fa4af78d6f016657 (diff) | |
download | opie-930291d6f7ed63862c9500faf4cddc89e6ee634f.zip opie-930291d6f7ed63862c9500faf4cddc89e6ee634f.tar.gz opie-930291d6f7ed63862c9500faf4cddc89e6ee634f.tar.bz2 |
dcop needs QString not const char*
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/net/wellenreiter/gui/wellenreiter.cpp b/noncore/net/wellenreiter/gui/wellenreiter.cpp index 79734a2..79773b3 100644 --- a/noncore/net/wellenreiter/gui/wellenreiter.cpp +++ b/noncore/net/wellenreiter/gui/wellenreiter.cpp | |||
@@ -452,71 +452,71 @@ void Wellenreiter::startClicked() | |||
452 | { | 452 | { |
453 | assert( parent() ); | 453 | assert( parent() ); |
454 | ( (QMainWindow*) parent() )->setCaption( tr( "Wellenreiter II - replaying capture file..." ) ); | 454 | ( (QMainWindow*) parent() )->setCaption( tr( "Wellenreiter II - replaying capture file..." ) ); |
455 | } | 455 | } |
456 | } | 456 | } |
457 | 457 | ||
458 | 458 | ||
459 | void Wellenreiter::timerEvent( QTimerEvent* ) | 459 | void Wellenreiter::timerEvent( QTimerEvent* ) |
460 | { | 460 | { |
461 | qDebug( "Wellenreiter::timerEvent()" ); | 461 | qDebug( "Wellenreiter::timerEvent()" ); |
462 | OPacket* p = pcap->next(); | 462 | OPacket* p = pcap->next(); |
463 | if ( !p ) // no more packets available | 463 | if ( !p ) // no more packets available |
464 | { | 464 | { |
465 | stopClicked(); | 465 | stopClicked(); |
466 | } | 466 | } |
467 | else | 467 | else |
468 | { | 468 | { |
469 | receivePacket( p ); | 469 | receivePacket( p ); |
470 | delete p; | 470 | delete p; |
471 | } | 471 | } |
472 | } | 472 | } |
473 | 473 | ||
474 | 474 | ||
475 | void Wellenreiter::doAction( const QString& action, const QString& protocol, OPacket* p ) | 475 | void Wellenreiter::doAction( const QString& action, const QString& protocol, OPacket* p ) |
476 | { | 476 | { |
477 | if ( action == "TouchSound" ) | 477 | if ( action == "TouchSound" ) |
478 | ODevice::inst()->touchSound(); | 478 | ODevice::inst()->touchSound(); |
479 | else if ( action == "AlarmSound" ) | 479 | else if ( action == "AlarmSound" ) |
480 | ODevice::inst()->alarmSound(); | 480 | ODevice::inst()->alarmSound(); |
481 | else if ( action == "KeySound" ) | 481 | else if ( action == "KeySound" ) |
482 | ODevice::inst()->keySound(); | 482 | ODevice::inst()->keySound(); |
483 | else if ( action == "LedOn" ) | 483 | else if ( action == "LedOn" ) |
484 | ODevice::inst()->setLedState( Led_Mail, Led_On ); | 484 | ODevice::inst()->setLedState( Led_Mail, Led_On ); |
485 | else if ( action == "LedOff" ) | 485 | else if ( action == "LedOff" ) |
486 | ODevice::inst()->setLedState( Led_Mail, Led_Off ); | 486 | ODevice::inst()->setLedState( Led_Mail, Led_Off ); |
487 | else if ( action == "LogMessage" ) | 487 | else if ( action == "LogMessage" ) |
488 | logwindow->log( QString().sprintf( "Got packet with protocol '%s'", (const char*) protocol ) ); | 488 | logwindow->log( QString().sprintf( "Got packet with protocol '%s'", (const char*) protocol ) ); |
489 | else if ( action == "MessageBox" ) | 489 | else if ( action == "MessageBox" ) |
490 | QMessageBox::information( this, "Notification!", | 490 | QMessageBox::information( this, "Notification!", |
491 | QString().sprintf( "Got packet with protocol '%s'", (const char*) protocol ) ); | 491 | QString().sprintf( "Got packet with protocol '%s'", (const char*) protocol ) ); |
492 | } | 492 | } |
493 | 493 | ||
494 | void Wellenreiter::joinNetwork(const QString& type, const QString& essid, int channel, const QString& macaddr) | 494 | void Wellenreiter::joinNetwork(const QString& type, const QString& essid, int channel, const QString& macaddr) |
495 | { | 495 | { |
496 | if ( !iface ) | 496 | if ( !iface ) |
497 | { | 497 | { |
498 | QMessageBox::warning( this, tr( "Can't do that!" ), tr( "No wireless\ninterface available." ) ); | 498 | QMessageBox::warning( this, tr( "Can't do that!" ), tr( "No wireless\ninterface available." ) ); |
499 | return; | 499 | return; |
500 | } | 500 | } |
501 | 501 | ||
502 | if ( sniffing ) | 502 | if ( sniffing ) |
503 | { | 503 | { |
504 | QMessageBox::warning( this, tr( "Can't do that!" ), tr( "Stop sniffing before\njoining a net." ) ); | 504 | QMessageBox::warning( this, tr( "Can't do that!" ), tr( "Stop sniffing before\njoining a net." ) ); |
505 | return; | 505 | return; |
506 | } | 506 | } |
507 | 507 | ||
508 | qDebug( "joinNetwork() with Interface %s: %s, %s, %d, %s", | 508 | qDebug( "joinNetwork() with Interface %s: %s, %s, %d, %s", |
509 | (const char*) iface->name(), | 509 | (const char*) iface->name(), |
510 | (const char*) type, | 510 | (const char*) type, |
511 | (const char*) essid, | 511 | (const char*) essid, |
512 | channel, | 512 | channel, |
513 | (const char*) macaddr ); | 513 | (const char*) macaddr ); |
514 | 514 | ||
515 | QCopEnvelope msg( "QPE/Application/networksettings", "wlan(QString,QString,QString)" ); | 515 | QCopEnvelope msg( "QPE/Application/networksettings", "wlan(QString,QString,QString)" ); |
516 | msg << iface->name() << QString("Mode") << type; | 516 | msg << QString(iface->name()) << QString("Mode") << type; |
517 | msg << iface->name() << QString("ESSID") << essid; | 517 | msg << QString(iface->name()) << QString("ESSID") << essid; |
518 | msg << iface->name() << QString("Channel") << channel; | 518 | msg << QString(iface->name()) << QString("Channel") << channel; |
519 | msg << iface->name() << QString("MacAddr") << macaddr; | 519 | msg << QString(iface->name()) << QString("MacAddr") << macaddr; |
520 | 520 | ||
521 | } | 521 | } |
522 | 522 | ||