author | schurig <schurig> | 2003-06-17 06:33:33 (UTC) |
---|---|---|
committer | schurig <schurig> | 2003-06-17 06:33:33 (UTC) |
commit | 9d006f21949fc9a25e323e2fd20fab0bfb249b49 (patch) (unidiff) | |
tree | ce5f2946ffc45d1108ac9612d5915db99818aa4f | |
parent | 0462357c9cad9f271b88f04615acaba4898cbf81 (diff) | |
download | opie-9d006f21949fc9a25e323e2fd20fab0bfb249b49.zip opie-9d006f21949fc9a25e323e2fd20fab0bfb249b49.tar.gz opie-9d006f21949fc9a25e323e2fd20fab0bfb249b49.tar.bz2 |
qpeDir() already has the trailing slash
-rw-r--r-- | noncore/settings/networksettings/mainwindowimp.cpp | 2 |
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 | |||
58 | connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); | 58 | connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); |
59 | connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); | 59 | connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); |
60 | connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); | 60 | connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); |
61 | 61 | ||
62 | connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); | 62 | connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); |
63 | 63 | ||
64 | //FIXME: disable profiles for the moment: | 64 | //FIXME: disable profiles for the moment: |
65 | // tabWidget->setTabEnabled( tab, false ); | 65 | // tabWidget->setTabEnabled( tab, false ); |
66 | 66 | ||
67 | // Load connections. | 67 | // Load connections. |
68 | // /usr/local/kde/lib/libinterfaces.la | 68 | // /usr/local/kde/lib/libinterfaces.la |
69 | #ifdef QWS | 69 | #ifdef QWS |
70 | loadModules(QPEApplication::qpeDir() + "/plugins/networksettings"); | 70 | loadModules(QPEApplication::qpeDir() + "plugins/networksettings"); |
71 | #else | 71 | #else |
72 | loader = KLibLoader::self(); | 72 | loader = KLibLoader::self(); |
73 | loadModules(QString("/usr/")+KStandardDirs::kde_default("lib")); | 73 | loadModules(QString("/usr/")+KStandardDirs::kde_default("lib")); |
74 | #endif | 74 | #endif |
75 | getAllInterfaces(); | 75 | getAllInterfaces(); |
76 | 76 | ||
77 | Interfaces i; | 77 | Interfaces i; |
78 | QStringList list = i.getInterfaceList(); | 78 | QStringList list = i.getInterfaceList(); |
79 | QMap<QString, Interface*>::Iterator it; | 79 | QMap<QString, Interface*>::Iterator it; |
80 | for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) { | 80 | for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) { |
81 | bool found = false; | 81 | bool found = false; |
82 | for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){ | 82 | for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){ |