author | alwin <alwin> | 2005-02-27 13:40:06 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-02-27 13:40:06 (UTC) |
commit | 952ed8b53ee74217c3aa839dada3119bb399b9a3 (patch) (side-by-side diff) | |
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 @@ #include <qdir.h> +#include <qregexp.h> #include <qpe/qpeapplication.h> #include <qpe/qcopenvelope_qws.h> #include <unistd.h> @@ -10,6 +11,8 @@ CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod): setCaption(tr("keyz configurator")); + static QRegExp r("^common.*\\.xml$"); + static QRegExp r2("^zkb\\.xml$"); QGridLayout* gl = new QGridLayout(this, 7, 5, 5, 5); QLabel* flabel = new QLabel("Available Keymaps", this); @@ -72,7 +75,7 @@ CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod): QStringList flist = dir.entryList(); QStringList::Iterator sit; for(sit = flist.begin(); sit != flist.end(); ++sit) { - if (*sit != "common.xml" && *sit != "zkb.xml" && m.find(*sit) == m.end()) { + if (r.match(*sit)==-1 && r2.match(*sit)==-1&& m.find(*sit) == m.end()) { files->insertItem(*sit); } } |