summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/mainwindowimp.cpp
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/mainwindowimp.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/mainwindowimp.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp
index 0ef1e68..5029525 100644
--- a/noncore/settings/networksettings/mainwindowimp.cpp
+++ b/noncore/settings/networksettings/mainwindowimp.cpp
@@ -653,14 +653,15 @@ void MainWindowImp::receive(const QCString &msg, const QByteArray &arg)
653// } 653// }
654 654
655 QMap<Module*, QLibrary*>::Iterator it; 655 QMap<Module*, QLibrary*>::Iterator it;
656 for( it = libraries.begin(); it != libraries.end(); ++it ){ 656 for( it = libraries.begin(); it != libraries.end(); ++it ){
657 qDebug("plugin >%s<", it.key()->type().latin1() ); 657 qDebug("plugin >%s<", it.key()->type().latin1() );
658 if(it.key()->type() == dest){ 658 if(it.key()->type() == dest){
659 it.key()->receive( param, arg ); 659 it.key()->receive( param, arg );
660 found = true; 660 found = true;
661 } 661 }
662 } 662 }
663 663
664 664
665 if (!found) qDebug("Huh what do ya want"); 665 if (found) QPEApplication::setKeepRunning();
666 else qDebug("Huh what do ya want");
666} 667}