summaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2022-02-13 14:52:41 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2022-02-14 11:12:26 +0200
commit38201182468ee2d8a289e2d6c50ece7bdf9e12ca (patch)
treec40072321b68885f154760516380eaeaa6a342be /guile
parent23fc8bdba8da1b639256610f3e35df2cd1b9dc36 (diff)
store: rename "metadata" into "properties"
properties are the constant (for the duration) values for a store; metadata may change, so reserve that name for that.
Diffstat (limited to 'guile')
-rw-r--r--guile/mu-guile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/guile/mu-guile.cc b/guile/mu-guile.cc
index 077b891..b916f27 100644
--- a/guile/mu-guile.cc
+++ b/guile/mu-guile.cc
@@ -85,9 +85,9 @@ try {
StoreSingleton = std::make_unique<Mu::Store>(mu_runtime_path(MU_RUNTIME_PATH_XAPIANDB));
g_debug("mu-guile: opened store @ %s (n=%zu); maildir: %s",
- StoreSingleton->metadata().database_path.c_str(),
+ StoreSingleton->properties().database_path.c_str(),
StoreSingleton->size(),
- StoreSingleton->metadata().root_maildir.c_str());
+ StoreSingleton->properties().root_maildir.c_str());
return TRUE;