aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async
diff options
context:
space:
mode:
authorGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-22 17:56:20 -0600
committerGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-22 17:56:20 -0600
commita921472d7c3ba501fb4163bfce8e178ac64f9511 (patch)
tree991641e1dc9cd867180c118fa38c7841a54ea425 /src/async
parentf3561cc84b9c0a9efd82501ef8243660c7da84e9 (diff)
Renaming and Fix Typos
Diffstat (limited to 'src/async')
-rw-r--r--src/async/nntp/MCNNTPAsyncSession.cc2
-rw-r--r--src/async/nntp/MCNNTPAsyncSession.h2
-rw-r--r--src/async/nntp/MCNNTPFetchOverviewOperation.h2
-rw-r--r--src/async/nntp/MCNNTPFetchServerTimeOperation.cc2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/async/nntp/MCNNTPAsyncSession.cc b/src/async/nntp/MCNNTPAsyncSession.cc
index b14e1970..5c3aa36a 100644
--- a/src/async/nntp/MCNNTPAsyncSession.cc
+++ b/src/async/nntp/MCNNTPAsyncSession.cc
@@ -204,7 +204,7 @@ NNTPFetchOverviewOperation * NNTPAsyncSession::fetchOverviewOperationWithIndexes
return op;
}
-NNTPFetchServerTimeOperation * NNTPAsyncSession::fetchServerTimeOperation()
+NNTPFetchServerTimeOperation * NNTPAsyncSession::fetchServerDateOperation()
{
NNTPFetchServerTimeOperation * op = new NNTPFetchServerTimeOperation();
op->setSession(this);
diff --git a/src/async/nntp/MCNNTPAsyncSession.h b/src/async/nntp/MCNNTPAsyncSession.h
index c92e09ee..bbcc4036 100644
--- a/src/async/nntp/MCNNTPAsyncSession.h
+++ b/src/async/nntp/MCNNTPAsyncSession.h
@@ -62,7 +62,7 @@ namespace mailcore {
virtual NNTPFetchOverviewOperation * fetchOverviewOperationWithIndexes(String * groupName, IndexSet * indexes);
- virtual NNTPFetchServerTimeOperation * fetchServerTimeOperation();
+ virtual NNTPFetchServerTimeOperation * fetchServerDateOperation();
virtual NNTPListNewsgroupsOperation * listAllNewsgroupsOperation();
virtual NNTPListNewsgroupsOperation * listDefaultNewsgroupsOperation();
diff --git a/src/async/nntp/MCNNTPFetchOverviewOperation.h b/src/async/nntp/MCNNTPFetchOverviewOperation.h
index 0582864d..aab8d24b 100644
--- a/src/async/nntp/MCNNTPFetchOverviewOperation.h
+++ b/src/async/nntp/MCNNTPFetchOverviewOperation.h
@@ -35,7 +35,7 @@ namespace mailcore {
private:
IndexSet * mIndexes;
String * mGroupName;
- Array * /* NNTPGroupInfo */ mArticles;
+ Array * /* MessageHeader */ mArticles;
};
}
diff --git a/src/async/nntp/MCNNTPFetchServerTimeOperation.cc b/src/async/nntp/MCNNTPFetchServerTimeOperation.cc
index a2729f48..86800733 100644
--- a/src/async/nntp/MCNNTPFetchServerTimeOperation.cc
+++ b/src/async/nntp/MCNNTPFetchServerTimeOperation.cc
@@ -29,6 +29,6 @@ time_t NNTPFetchServerTimeOperation::time()
void NNTPFetchServerTimeOperation::main()
{
ErrorCode error;
- mTime = session()->session()->fetchServerClockTime(&error);
+ mTime = session()->session()->fetchServerDate(&error);
setError(error);
}