aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/imap/IMAPStore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/imap/IMAPStore.cpp')
-rw-r--r--src/net/imap/IMAPStore.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/imap/IMAPStore.cpp b/src/net/imap/IMAPStore.cpp
index 53fa9e80..753adc65 100644
--- a/src/net/imap/IMAPStore.cpp
+++ b/src/net/imap/IMAPStore.cpp
@@ -91,7 +91,7 @@ ref <folder> IMAPStore::getFolder(const folder::path& path)
}
-const bool IMAPStore::isValidFolderName(const folder::path::component& /* name */) const
+bool IMAPStore::isValidFolderName(const folder::path::component& /* name */) const
{
return true;
}
@@ -117,19 +117,19 @@ void IMAPStore::connect()
}
-const bool IMAPStore::isConnected() const
+bool IMAPStore::isConnected() const
{
return (m_connection && m_connection->isConnected());
}
-const bool IMAPStore::isIMAPS() const
+bool IMAPStore::isIMAPS() const
{
return m_isIMAPS;
}
-const bool IMAPStore::isSecuredConnection() const
+bool IMAPStore::isSecuredConnection() const
{
if (m_connection == NULL)
return false;
@@ -203,7 +203,7 @@ void IMAPStore::unregisterFolder(IMAPFolder* folder)
}
-const int IMAPStore::getCapabilities() const
+int IMAPStore::getCapabilities() const
{
return (CAPABILITY_CREATE_FOLDER |
CAPABILITY_RENAME_FOLDER |