summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings
authorschurig <schurig>2003-06-17 06:33:33 (UTC)
committer schurig <schurig>2003-06-17 06:33:33 (UTC)
commit9d006f21949fc9a25e323e2fd20fab0bfb249b49 (patch) (side-by-side diff)
treece5f2946ffc45d1108ac9612d5915db99818aa4f /noncore/settings/networksettings
parent0462357c9cad9f271b88f04615acaba4898cbf81 (diff)
downloadopie-9d006f21949fc9a25e323e2fd20fab0bfb249b49.zip
opie-9d006f21949fc9a25e323e2fd20fab0bfb249b49.tar.gz
opie-9d006f21949fc9a25e323e2fd20fab0bfb249b49.tar.bz2
qpeDir() already has the trailing slash
Diffstat (limited to 'noncore/settings/networksettings') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/mainwindowimp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp
index 544498f..8ea241d 100644
--- a/noncore/settings/networksettings/mainwindowimp.cpp
+++ b/noncore/settings/networksettings/mainwindowimp.cpp
@@ -58,25 +58,25 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(par
connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile()));
connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile()));
connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile()));
connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&)));
//FIXME: disable profiles for the moment:
// tabWidget->setTabEnabled( tab, false );
// Load connections.
// /usr/local/kde/lib/libinterfaces.la
#ifdef QWS
- loadModules(QPEApplication::qpeDir() + "/plugins/networksettings");
+ loadModules(QPEApplication::qpeDir() + "plugins/networksettings");
#else
loader = KLibLoader::self();
loadModules(QString("/usr/")+KStandardDirs::kde_default("lib"));
#endif
getAllInterfaces();
Interfaces i;
QStringList list = i.getInterfaceList();
QMap<QString, Interface*>::Iterator it;
for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) {
bool found = false;
for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){