diff options
Diffstat (limited to '')
-rw-r--r-- | src/net/maildir/maildirStore.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/maildir/maildirStore.cpp b/src/net/maildir/maildirStore.cpp index 79510eb0..4cea5ec3 100644 --- a/src/net/maildir/maildirStore.cpp +++ b/src/net/maildir/maildirStore.cpp @@ -75,7 +75,7 @@ ref <folder> maildirStore::getRootFolder() throw exceptions::illegal_state("Not connected"); return vmime::create <maildirFolder>(folder::path(), - thisWeakRef().dynamicCast <maildirStore>()); + thisRef().dynamicCast <maildirStore>()); } @@ -85,7 +85,7 @@ ref <folder> maildirStore::getDefaultFolder() throw exceptions::illegal_state("Not connected"); return vmime::create <maildirFolder>(folder::path::component("inbox"), - thisWeakRef().dynamicCast <maildirStore>()); + thisRef().dynamicCast <maildirStore>()); } @@ -95,7 +95,7 @@ ref <folder> maildirStore::getFolder(const folder::path& path) throw exceptions::illegal_state("Not connected"); return vmime::create <maildirFolder>(path, - thisWeakRef().dynamicCast <maildirStore>()); + thisRef().dynamicCast <maildirStore>()); } |