-rw-r--r-- | core/launcher/launcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp index aa357ca..010a2e9 100644 --- a/core/launcher/launcher.cpp +++ b/core/launcher/launcher.cpp | |||
@@ -586,49 +586,49 @@ void Launcher::select( const AppLnk *appLnk ) | |||
586 | /* ### Fixme */ | 586 | /* ### Fixme */ |
587 | if ( i == 1 ) | 587 | if ( i == 1 ) |
588 | Global::execute("textedit",appLnk->file()); | 588 | Global::execute("textedit",appLnk->file()); |
589 | 589 | ||
590 | return; | 590 | return; |
591 | } | 591 | } |
592 | tabs->setBusy(TRUE); | 592 | tabs->setBusy(TRUE); |
593 | emit executing( appLnk ); | 593 | emit executing( appLnk ); |
594 | appLnk->execute(); | 594 | appLnk->execute(); |
595 | } | 595 | } |
596 | } | 596 | } |
597 | 597 | ||
598 | void Launcher::properties( AppLnk *appLnk ) | 598 | void Launcher::properties( AppLnk *appLnk ) |
599 | { | 599 | { |
600 | if ( appLnk->type() == "Folder" ) { // No tr | 600 | if ( appLnk->type() == "Folder" ) { // No tr |
601 | // Not supported: flat is simpler for the user | 601 | // Not supported: flat is simpler for the user |
602 | } else { | 602 | } else { |
603 | /* ### libqtopia FIXME also moving docLnks... */ | 603 | /* ### libqtopia FIXME also moving docLnks... */ |
604 | LnkProperties prop(appLnk,0 ); | 604 | LnkProperties prop(appLnk,0 ); |
605 | 605 | ||
606 | QPEApplication::execDialog( &prop ); | 606 | QPEApplication::execDialog( &prop ); |
607 | } | 607 | } |
608 | } | 608 | } |
609 | 609 | ||
610 | void Launcher::storageChanged( const QList<FileSystem> &fs ) | 610 | void Launcher::storageChanged( const QList<FileSystem> & ) |
611 | { | 611 | { |
612 | // ### update combo boxes if we had a combo box for the storage type | 612 | // ### update combo boxes if we had a combo box for the storage type |
613 | } | 613 | } |
614 | 614 | ||
615 | void Launcher::systemMessage( const QCString &msg, const QByteArray &data) | 615 | void Launcher::systemMessage( const QCString &msg, const QByteArray &data) |
616 | { | 616 | { |
617 | QDataStream stream( data, IO_ReadOnly ); | 617 | QDataStream stream( data, IO_ReadOnly ); |
618 | if ( msg == "busy()" ) { | 618 | if ( msg == "busy()" ) { |
619 | tb->startWait(); | 619 | tb->startWait(); |
620 | } else if ( msg == "notBusy(QString)" ) { | 620 | } else if ( msg == "notBusy(QString)" ) { |
621 | QString app; | 621 | QString app; |
622 | stream >> app; | 622 | stream >> app; |
623 | tabs->setBusy(FALSE); | 623 | tabs->setBusy(FALSE); |
624 | tb->stopWait(app); | 624 | tb->stopWait(app); |
625 | } else if (msg == "applyStyle()") { | 625 | } else if (msg == "applyStyle()") { |
626 | tabs->currentView()->relayout(); | 626 | tabs->currentView()->relayout(); |
627 | } | 627 | } |
628 | } | 628 | } |
629 | 629 | ||
630 | // These are the update functions from the server | 630 | // These are the update functions from the server |
631 | void Launcher::typeAdded( const QString& type, const QString& name, | 631 | void Launcher::typeAdded( const QString& type, const QString& name, |
632 | const QPixmap& pixmap, const QPixmap& ) | 632 | const QPixmap& pixmap, const QPixmap& ) |
633 | { | 633 | { |
634 | tabs->newView( type, pixmap, name ); | 634 | tabs->newView( type, pixmap, name ); |