author | zecke <zecke> | 2004-07-17 17:48:36 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-07-17 17:48:36 (UTC) |
commit | 0f64024dc631d9043d2f6f4f6bcafaac7eddd545 (patch) (unidiff) | |
tree | 1919517cd70c2b74caeee24cccb0ac239b867b74 | |
parent | 8cc200a72b547bb7e313cfa197c72f91dfe0c759 (diff) | |
download | opie-0f64024dc631d9043d2f6f4f6bcafaac7eddd545.zip opie-0f64024dc631d9043d2f6f4f6bcafaac7eddd545.tar.gz opie-0f64024dc631d9043d2f6f4f6bcafaac7eddd545.tar.bz2 |
Fix compiler warning about unused variable
-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 | |||
@@ -602,17 +602,17 @@ void Launcher::properties( AppLnk *appLnk ) | |||
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()" ) { |