aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/imap')
-rw-r--r--src/core/imap/MCIMAPMessage.h6
-rw-r--r--src/core/imap/MCIMAPNamespace.h6
-rw-r--r--src/core/imap/MCIMAPNamespaceItem.h2
3 files changed, 7 insertions, 7 deletions
diff --git a/src/core/imap/MCIMAPMessage.h b/src/core/imap/MCIMAPMessage.h
index 5bc5f843..5a9cadcb 100644
--- a/src/core/imap/MCIMAPMessage.h
+++ b/src/core/imap/MCIMAPMessage.h
@@ -35,8 +35,8 @@ namespace mailcore {
virtual void setMainPart(AbstractPart * mainPart);
virtual AbstractPart * mainPart();
- virtual void setGmailLabels(Array * labels);
- virtual Array * gmailLabels();
+ virtual void setGmailLabels(Array * /* String */ labels);
+ virtual Array * /* String */ gmailLabels();
virtual AbstractPart * partForPartID(String * partID);
@@ -58,7 +58,7 @@ namespace mailcore {
MessageFlag mFlags;
MessageFlag mOriginalFlags;
AbstractPart * mMainPart;
- Array * mLabels;
+ Array * /* String */ mLabels;
void init();
};
diff --git a/src/core/imap/MCIMAPNamespace.h b/src/core/imap/MCIMAPNamespace.h
index 09c029e2..4ce0b546 100644
--- a/src/core/imap/MCIMAPNamespace.h
+++ b/src/core/imap/MCIMAPNamespace.h
@@ -18,12 +18,12 @@ namespace mailcore {
virtual String * mainPrefix();
virtual char mainDelimiter();
- virtual Array * prefixes();
+ virtual Array * /* String */ prefixes();
virtual String * pathForComponents(Array * components);
virtual String * pathForComponentsAndPrefix(Array * components, String * prefix);
- virtual Array * componentsFromPath(String * path);
+ virtual Array * /* String */ componentsFromPath(String * path);
virtual bool containsFolderPath(String * path);
@@ -35,7 +35,7 @@ namespace mailcore {
virtual Object * copy();
private:
- Array * mItems;
+ Array * /* String */ mItems;
void init();
IMAPNamespaceItem * mainItem();
IMAPNamespaceItem * itemForPath(String * path);
diff --git a/src/core/imap/MCIMAPNamespaceItem.h b/src/core/imap/MCIMAPNamespaceItem.h
index 4cee0aea..8ab094cc 100644
--- a/src/core/imap/MCIMAPNamespaceItem.h
+++ b/src/core/imap/MCIMAPNamespaceItem.h
@@ -20,7 +20,7 @@ namespace mailcore {
virtual char delimiter();
virtual String * pathForComponents(Array * components);
- virtual Array * componentsForPath(String * path);
+ virtual Array * /* String */ componentsForPath(String * path);
virtual bool containsFolder(String * folder);