author | alwin <alwin> | 2005-02-27 13:40:06 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-02-27 13:40:06 (UTC) |
commit | 952ed8b53ee74217c3aa839dada3119bb399b9a3 (patch) (unidiff) | |
tree | 1ab11166322e31deb9429deae83f34018b69d6eb | |
parent | cfca93daadf9c0c6c41a4f1eed26dcac318056f1 (diff) | |
download | opie-952ed8b53ee74217c3aa839dada3119bb399b9a3.zip opie-952ed8b53ee74217c3aa839dada3119bb399b9a3.tar.gz opie-952ed8b53ee74217c3aa839dada3119bb399b9a3.tar.bz2 |
all xml-files starting with "common" in name will not be listed
-rw-r--r-- | noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp b/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp index 6f24ea0..f4005bb 100644 --- a/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp +++ b/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp | |||
@@ -1,5 +1,6 @@ | |||
1 | 1 | ||
2 | #include <qdir.h> | 2 | #include <qdir.h> |
3 | #include <qregexp.h> | ||
3 | #include <qpe/qpeapplication.h> | 4 | #include <qpe/qpeapplication.h> |
4 | #include <qpe/qcopenvelope_qws.h> | 5 | #include <qpe/qcopenvelope_qws.h> |
5 | #include <unistd.h> | 6 | #include <unistd.h> |
@@ -10,6 +11,8 @@ CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod): | |||
10 | 11 | ||
11 | setCaption(tr("keyz configurator")); | 12 | setCaption(tr("keyz configurator")); |
12 | 13 | ||
14 | static QRegExp r("^common.*\\.xml$"); | ||
15 | static QRegExp r2("^zkb\\.xml$"); | ||
13 | QGridLayout* gl = new QGridLayout(this, 7, 5, 5, 5); | 16 | QGridLayout* gl = new QGridLayout(this, 7, 5, 5, 5); |
14 | 17 | ||
15 | QLabel* flabel = new QLabel("Available Keymaps", this); | 18 | QLabel* flabel = new QLabel("Available Keymaps", this); |
@@ -72,7 +75,7 @@ CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod): | |||
72 | QStringList flist = dir.entryList(); | 75 | QStringList flist = dir.entryList(); |
73 | QStringList::Iterator sit; | 76 | QStringList::Iterator sit; |
74 | for(sit = flist.begin(); sit != flist.end(); ++sit) { | 77 | for(sit = flist.begin(); sit != flist.end(); ++sit) { |
75 | if (*sit != "common.xml" && *sit != "zkb.xml" && m.find(*sit) == m.end()) { | 78 | if (r.match(*sit)==-1 && r2.match(*sit)==-1&& m.find(*sit) == m.end()) { |
76 | files->insertItem(*sit); | 79 | files->insertItem(*sit); |
77 | } | 80 | } |
78 | } | 81 | } |