Renamed BMailRemoteStorageProtocol to BRemoteMailStorageProtocol. Because I like it better. This should complete the API modifications from the Haiku import.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9379 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Nathan Whitehorn
2004-10-16 17:21:26 +00:00
parent 37aec728fa
commit c60f83369f
3 changed files with 14 additions and 14 deletions
@@ -47,7 +47,7 @@ struct mailbox_info {
BString server_mb_name;
};
class IMAP4Client : public BMailRemoteStorageProtocol {
class IMAP4Client : public BRemoteMailStorageProtocol {
public:
IMAP4Client(BMessage *settings, BMailChainRunner *run);
virtual ~IMAP4Client();
@@ -118,7 +118,7 @@ class NoopWorker : public BHandler {
time_t last_run;
};
IMAP4Client::IMAP4Client(BMessage *settings, BMailChainRunner *run) : BMailRemoteStorageProtocol(settings,run), noop(NULL), commandCount(0), net(-1), selected_mb(""), force_reselect(false) {
IMAP4Client::IMAP4Client(BMessage *settings, BMailChainRunner *run) : BRemoteMailStorageProtocol(settings,run), noop(NULL), commandCount(0), net(-1), selected_mb(""), force_reselect(false) {
err = B_OK;
mb_root = settings->FindString("root");