Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace QDir::NoDotAndDotDot with QDir::NoDot|QDir::NoDotDot for Qt5
  • Loading branch information
Bernd Wachter committed Mar 21, 2013
1 parent 3ad7db3 commit 999ecce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libssu/ssusettings.cpp
Expand Up @@ -41,7 +41,7 @@ void SsuSettings::merge(){

SsuLog *ssuLog = SsuLog::instance();

QDirIterator it(settingsd, QDir::AllEntries|QDir::NoDotAndDotDot, QDirIterator::FollowSymlinks);
QDirIterator it(settingsd, QDir::AllEntries|QDir::NoDot|QDir::NoDotDot, QDirIterator::FollowSymlinks);
QStringList settingsFiles;

QFileInfo oldSettingsInfo(fileName());
Expand Down
5 changes: 5 additions & 0 deletions rpm/ssu.changes
@@ -1,3 +1,8 @@
* Thu Mar 21 2013 Bernd Wachter <bernd.wachter@jollamobile.com> - 0.24
- Add support for arbitrary variables in flavour groups
- Split off device info and settings functionality
- Add support for board-mappings.d

* Mon Mar 11 2013 Bernd Wachter <bernd.wachter@jollamobile.com> - 0.23
- Add force option to rndssu update

Expand Down
2 changes: 1 addition & 1 deletion rpm/ssu.spec
@@ -1,5 +1,5 @@
Name: ssu
Version: 0.23
Version: 0.24
Release: 1
Summary: SSU enabler for RND
Group: System/Base
Expand Down

0 comments on commit 999ecce

Please sign in to comment.