summaryrefslogtreecommitdiff
path: root/noncore/settings
authortille <tille>2003-05-22 15:10:21 (UTC)
committer tille <tille>2003-05-22 15:10:21 (UTC)
commit00cbc1e933f90fe67f53928472567ddf4a17eabd (patch) (side-by-side diff)
treef5e0d34303afcc688a0ad38be5e5489f6f0c8a6f /noncore/settings
parent273857932d4d4af9bf78bfca92f2986163e5f4f6 (diff)
downloadopie-00cbc1e933f90fe67f53928472567ddf4a17eabd.zip
opie-00cbc1e933f90fe67f53928472567ddf4a17eabd.tar.gz
opie-00cbc1e933f90fe67f53928472567ddf4a17eabd.tar.bz2
pppplugin
Diffstat (limited to 'noncore/settings') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/mainwindowimp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp
index 7e24cda..56bbd2c 100644
--- a/noncore/settings/networksettings/mainwindowimp.cpp
+++ b/noncore/settings/networksettings/mainwindowimp.cpp
@@ -245,6 +245,7 @@ void MainWindowImp::loadModules(const QString &path){
if(fi->fileName().contains(".so") && fi->fileName().contains("networksettings_")){
#endif
loadPlugin(path + "/" + fi->fileName());
+ qDebug("loaded plugin: >%s< ",QString(path + "/" + fi->fileName()).latin1());
}
++it;
}
@@ -287,9 +288,7 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString &
#else
QLibrary *lib = loader->library(pluginFileName);
if( !lib || !lib->hasSymbol(resolveString) ){
-#ifdef DEBUG
qDebug(QString("MainWindowImp::loadPlugin: File: %1 is not a plugin, but though was.").arg(pluginFileName).latin1());
-#endif
return NULL;
}
// Try to get an object.
@@ -341,6 +340,7 @@ void MainWindowImp::addClicked(){
if(it.key()){
Interface *i = (it.key())->addNewInterface(item->text(0));
if(i){
+ qDebug("iface name %s",i->getInterfaceName().latin1());
interfaceNames.insert(i->getInterfaceName(), i);
updateInterface(i);
}