Renamed pop3.{cpp|h} to POP3.{cpp|h}.

This commit is contained in:
Axel Dörfler
2015-01-06 15:21:17 +01:00
parent 6a6b7ae7a0
commit 7135c4f8fe
4 changed files with 5 additions and 6 deletions
@@ -12,7 +12,7 @@ SubDirHdrs [ FDirName $(HAIKU_TOP) headers os add-ons mail_daemon ] ;
local sources =
ConfigView.cpp
MessageIO.cpp
pop3.cpp
POP3.cpp
md5c.c
;
@@ -42,5 +42,5 @@ DoCatalogs POP3 :
x-vnd.Haiku-POP3
:
ConfigView.cpp
pop3.cpp
POP3.cpp
;
@@ -1,5 +1,5 @@
/*
* Copyright 2007-2011, Haiku, Inc. All rights reserved.
* Copyright 2007-2012, Haiku, Inc. All rights reserved.
* Copyright 2001 Dr. Zoidberg Enterprises. All rights reserved.
*/
#ifndef MAIL_MESSAGE_IO_H
@@ -10,7 +10,7 @@
#include <Message.h>
#include <Path.h>
#include "pop3.h"
#include "POP3.h"
class BMailMessageIO : public BPositionIO {
@@ -19,7 +19,6 @@ public:
BPositionIO* dumpTo, int32 messageID);
~BMailMessageIO();
//----BPositionIO
virtual ssize_t ReadAt(off_t pos, void* buffer,
size_t amountToRead);
virtual ssize_t WriteAt(off_t pos, const void* buffer,
@@ -10,7 +10,7 @@
//! POP3Protocol - implementation of the POP3 protocol
#include "pop3.h"
#include "POP3.h"
#include <errno.h>
#include <netdb.h>