[Libreoffice-commits] core.git: configmgr/source
Stephan Bergmann
sbergman at redhat.com
Thu Aug 27 04:06:56 PDT 2015
configmgr/source/components.cxx | 13 +++----------
configmgr/source/components.hxx | 2 --
configmgr/source/modifications.hxx | 2 ++
3 files changed, 5 insertions(+), 12 deletions(-)
New commits:
commit 033ce593af9b1505c804930c84297f1da26858c4
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Thu Aug 27 13:06:15 2015 +0200
Simplify hasModifications check
Change-Id: Idcbd9a20ab13d0717f8728673e2c55e87aa92be4
diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index 6c2726e..b3c8acb 100644
--- a/configmgr/source/components.cxx
+++ b/configmgr/source/components.cxx
@@ -277,18 +277,11 @@ void Components::addModification(Path const & path) {
data_.modifications.add(path);
}
-bool Components::hasModifications() const
-{
- return data_.modifications.getRoot().children.begin() !=
- data_.modifications.getRoot().children.end();
-}
-
void Components::writeModifications() {
- if (!hasModifications() || modificationFileUrl_.isEmpty())
- return;
-
- if (!writeThread_.is()) {
+ if (!(data_.modifications.empty() || modificationFileUrl_.isEmpty()
+ || writeThread_.is()))
+ {
writeThread_ = new WriteThread(
&writeThread_, *this, modificationFileUrl_, data_);
writeThread_->launch();
diff --git a/configmgr/source/components.hxx b/configmgr/source/components.hxx
index f43181f..25d0d6e 100644
--- a/configmgr/source/components.hxx
+++ b/configmgr/source/components.hxx
@@ -78,8 +78,6 @@ public:
void writeModifications();
- bool hasModifications() const;
-
void flushModifications();
// must be called with configmgr::lock unaquired; must be called before
// shutdown if writeModifications has ever been called (probably
diff --git a/configmgr/source/modifications.hxx b/configmgr/source/modifications.hxx
index 71e06ea..04ad5c3 100644
--- a/configmgr/source/modifications.hxx
+++ b/configmgr/source/modifications.hxx
@@ -45,6 +45,8 @@ public:
void remove(Path const & path);
+ bool empty() const { return root_.children.empty(); }
+
Node const & getRoot() const { return root_;}
private:
More information about the Libreoffice-commits
mailing list