author | benmeyer <benmeyer> | 2003-04-09 19:35:25 (UTC) |
---|---|---|
committer | benmeyer <benmeyer> | 2003-04-09 19:35:25 (UTC) |
commit | 76fd85d1d8aaf1140feb59044add12e52f4e76f0 (patch) (side-by-side diff) | |
tree | acf35c4d40aeb6bbd7d01034df8353cda6ade091 | |
parent | 6e2ee769c8e6cba600e235822d5003cfe31e55c5 (diff) | |
download | opie-76fd85d1d8aaf1140feb59044add12e52f4e76f0.zip opie-76fd85d1d8aaf1140feb59044add12e52f4e76f0.tar.gz opie-76fd85d1d8aaf1140feb59044add12e52f4e76f0.tar.bz2 |
compile fixes
-rw-r--r-- | noncore/settings/networksettings/mainwindowimp.cpp | 7 | ||||
-rw-r--r-- | noncore/settings/networksettings/mainwindowimp.h | 4 |
2 files changed, 3 insertions, 8 deletions
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp index 581b7e3..da21c05 100644 --- a/noncore/settings/networksettings/mainwindowimp.cpp +++ b/noncore/settings/networksettings/mainwindowimp.cpp @@ -20,5 +20,4 @@ #include <qpe/resource.h>
#include <qpe/qpeapplication.h>
-// #define QLibrary Library
#else
#include <klibloader.h>
@@ -383,5 +382,5 @@ void MainWindowImp::configureClicked(){ }
- InterfaceSetupImpDialog *configure = new InterfaceSetupImpDialog(this, "InterfaceSetupImp", i, true, Qt::WType_Modal | Qt::WDestructiveClose | Qt::WStyle_Dialog);
+ InterfaceSetupImpDialog *configure = new InterfaceSetupImpDialog(this, "InterfaceSetupImp", i, true, Qt::WDestructiveClose );
QString currentProfileText = currentProfileLabel->text();
if(currentProfileText.upper() == "ALL");
@@ -419,5 +418,5 @@ void MainWindowImp::informationClicked(){ }
}
- InterfaceInformationImp *information = new InterfaceInformationImp(this, "InterfaceSetupImp", i, Qt::WType_Modal | Qt::WDestructiveClose | Qt::WStyle_Dialog);
+ InterfaceInformationImp *information = new InterfaceInformationImp(this, "InterfaceSetupImp", i, Qt::WType_Modal | Qt::WDestructiveClose | Qt::WType_Dialog);
information->showMaximized();
}
@@ -587,4 +586,2 @@ void MainWindowImp::changeProfile(){ }
-// mainwindowimp.cpp
-
diff --git a/noncore/settings/networksettings/mainwindowimp.h b/noncore/settings/networksettings/mainwindowimp.h index 49f3eea..c045fe6 100644 --- a/noncore/settings/networksettings/mainwindowimp.h +++ b/noncore/settings/networksettings/mainwindowimp.h @@ -64,6 +64,4 @@ private: };
-#endif
-
-// mainwindowimp.h
+#endif // MAINWINOWIMP_H
|