diff options
| author | 2010-01-21 17:02:45 +0000 | |
|---|---|---|
| committer | 2010-01-21 17:02:45 +0000 | |
| commit | c25bf467ebb23e91fe1ba93630fcf5d300279969 (patch) | |
| tree | a34b78cb86b65a911bff8cdae3a7d5e71ce69793 /src/modules/addon | |
| parent | [KVIrc] (trunk) Fix some remaining spelling errors (thanks to Lintian). (diff) | |
| download | KVIrc-c25bf467ebb23e91fe1ba93630fcf5d300279969.tar.gz KVIrc-c25bf467ebb23e91fe1ba93630fcf5d300279969.tar.bz2 KVIrc-c25bf467ebb23e91fe1ba93630fcf5d300279969.zip | |
Minor fixes
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3859 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon')
| -rw-r--r-- | src/modules/addon/packaddondialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/addon/packaddondialog.cpp b/src/modules/addon/packaddondialog.cpp index 62722f363..9b4ff25e7 100644 --- a/src/modules/addon/packaddondialog.cpp +++ b/src/modules/addon/packaddondialog.cpp @@ -709,7 +709,9 @@ void KviPackAddonSummaryFilesWidget::showEvent(QShowEvent *) // Iterate through the addon dir and its subdirs while(it.hasNext()) { - list.append(it.next()); + QString szStr=it.next(); + if(!szStr.contains("/.")) + list.append(szStr); } // QDirIterator does not support sorting, so do it manually |
