Fixed compilation errors with g++ 4.0.
This commit is contained in:
parent
0e5e375cef
commit
7b3dd58edb
@ -2,6 +2,10 @@
|
|||||||
VERSION 0.7.1cvs
|
VERSION 0.7.1cvs
|
||||||
================
|
================
|
||||||
|
|
||||||
|
2005-06-21 Vincent Richard <vincent@vincent-richard.net>
|
||||||
|
|
||||||
|
* Fixed compilation errors with g++ 4.0.
|
||||||
|
|
||||||
2005-06-13 Vincent Richard <vincent@vincent-richard.net>
|
2005-06-13 Vincent Richard <vincent@vincent-richard.net>
|
||||||
|
|
||||||
* word.cpp: fixed a bug in parsing, when the first character of word data
|
* word.cpp: fixed a bug in parsing, when the first character of word data
|
||||||
|
@ -329,7 +329,7 @@ void maildirMessage::extractPart(const part& p, utility::outputStream& os,
|
|||||||
|
|
||||||
void maildirMessage::extractImpl(utility::outputStream& os, utility::progressionListener* progress,
|
void maildirMessage::extractImpl(utility::outputStream& os, utility::progressionListener* progress,
|
||||||
const int start, const int length, const int partialStart, const int partialLength,
|
const int start, const int length, const int partialStart, const int partialLength,
|
||||||
const bool peek) const
|
const bool /* peek */) const
|
||||||
{
|
{
|
||||||
utility::fileSystemFactory* fsf = platformDependant::getHandler()->getFileSystemFactory();
|
utility::fileSystemFactory* fsf = platformDependant::getHandler()->getFileSystemFactory();
|
||||||
|
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "vmime/types.hpp"
|
#include "vmime/types.hpp"
|
||||||
#include "vmime/dateTime.hpp"
|
#include "vmime/dateTime.hpp"
|
||||||
|
|
||||||
|
#include "vmime/message.hpp"
|
||||||
#include "vmime/messaging/message.hpp"
|
#include "vmime/messaging/message.hpp"
|
||||||
#include "vmime/messaging/events.hpp"
|
#include "vmime/messaging/events.hpp"
|
||||||
|
|
||||||
|
@ -32,6 +32,9 @@ namespace messaging {
|
|||||||
namespace imap {
|
namespace imap {
|
||||||
|
|
||||||
|
|
||||||
|
class IMAPFolder;
|
||||||
|
|
||||||
|
|
||||||
/** IMAP message implementation.
|
/** IMAP message implementation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ namespace imap {
|
|||||||
class IMAPParser;
|
class IMAPParser;
|
||||||
class IMAPTag;
|
class IMAPTag;
|
||||||
class IMAPConnection;
|
class IMAPConnection;
|
||||||
|
class IMAPFolder;
|
||||||
|
|
||||||
|
|
||||||
/** IMAP store service.
|
/** IMAP store service.
|
||||||
|
@ -37,6 +37,7 @@ namespace maildir {
|
|||||||
|
|
||||||
|
|
||||||
class maildirStore;
|
class maildirStore;
|
||||||
|
class maildirMessage;
|
||||||
|
|
||||||
|
|
||||||
/** maildir folder implementation.
|
/** maildir folder implementation.
|
||||||
|
@ -32,6 +32,9 @@ namespace messaging {
|
|||||||
namespace pop3 {
|
namespace pop3 {
|
||||||
|
|
||||||
|
|
||||||
|
class POP3Folder;
|
||||||
|
|
||||||
|
|
||||||
/** POP3 message implementation.
|
/** POP3 message implementation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -35,6 +35,9 @@ namespace messaging {
|
|||||||
namespace pop3 {
|
namespace pop3 {
|
||||||
|
|
||||||
|
|
||||||
|
class POP3Folder;
|
||||||
|
|
||||||
|
|
||||||
/** POP3 store service.
|
/** POP3 store service.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user