diff options
Diffstat (limited to 'plugins/IEView/src/HTMLBuilder.h')
-rw-r--r-- | plugins/IEView/src/HTMLBuilder.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/IEView/src/HTMLBuilder.h b/plugins/IEView/src/HTMLBuilder.h index 38152fa163..9e2f2e3939 100644 --- a/plugins/IEView/src/HTMLBuilder.h +++ b/plugins/IEView/src/HTMLBuilder.h @@ -49,12 +49,12 @@ protected: ENF_ALL = 255,
ENF_CHAT_FORMATTING = 256
};
-// virtual char *encode(const char *text, const char *proto, bool replaceSmiley);
+ // virtual char *encode(const char *text, const char *proto, bool replaceSmiley);
virtual char *encodeUTF8(MCONTACT hContact, const char *proto, const wchar_t *text, int flags, bool isSent);
virtual char *encodeUTF8(MCONTACT hContact, const char *proto, const char *text, int flags, bool isSent);
virtual char *encodeUTF8(MCONTACT hContact, const char *proto, const char *text, int cp, int flags, bool isSent);
virtual wchar_t *encode(MCONTACT hContact, const char *proto, const wchar_t *text, int flags, bool isSent);
- virtual bool encode(MCONTACT hContact, const char *proto, const wchar_t *text, wchar_t **output, int *outputSize, int level, int flags, bool isSent);
+ virtual bool encode(MCONTACT hContact, const char *proto, const wchar_t *text, wchar_t **output, int *outputSize, int level, int flags, bool isSent);
virtual char* getProto(MCONTACT hContact);
virtual char* getProto(const char *proto, MCONTACT hContact);
virtual char* getRealProto(MCONTACT hContact);
@@ -68,7 +68,7 @@ protected: virtual int getLastEventType();
virtual void setLastEventType(int);
virtual bool isSameDate(time_t time1, time_t time2);
- virtual bool isDbEventShown(DBEVENTINFO * dbei)=0;
+ virtual bool isDbEventShown(DBEVENTINFO * dbei) = 0;
virtual ProtocolSettings *getSRMMProtocolSettings(const char *protocolName);
virtual ProtocolSettings *getSRMMProtocolSettings(MCONTACT hContact);
virtual ProtocolSettings *getHistoryProtocolSettings(const char *protocolName);
@@ -76,14 +76,14 @@ protected: virtual ProtocolSettings *getChatProtocolSettings(const char *protocolName);
virtual ProtocolSettings *getChatProtocolSettings(MCONTACT hContact);
void setLastIEViewEvent(IEVIEWEVENT *event);
- virtual void buildHead(IEView *, IEVIEWEVENT *event)=0;
+ virtual void buildHead(IEView *, IEVIEWEVENT *event) = 0;
public:
HTMLBuilder();
virtual ~HTMLBuilder();
void appendEventOld(IEView *, IEVIEWEVENT *event);
void appendEventNew(IEView *, IEVIEWEVENT *event);
void clear(IEView *, IEVIEWEVENT *event);
- virtual void appendEvent(IEView *, IEVIEWEVENT *event)=0;
+ virtual void appendEvent(IEView *, IEVIEWEVENT *event) = 0;
};
#endif
|