fix compiler warning in nsImapProtocol.cpp 182275 r/sr=mscott

This commit is contained in:
bienvenu%nventure.com 2003-07-29 22:15:01 +00:00
Родитель 55fbc59b87
Коммит ca28fc8334
2 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -22,11 +22,6 @@
# The following are used by the imap code to display progress/status/error messages
#
# Out of memory
## @name IMAP_OUT_OF_MEMORY
## @loc None
-1000=Application is out of memory.
# Status - opening folder
## @name IMAP_STATUS_SELECTING_MAILBOX
## @loc None
@ -412,3 +407,8 @@ reduce the number of cached connections.
## @loc None
5097=There are no storage quotas on this folder.
# Out of memory
## @name IMAP_OUT_OF_MEMORY
## @loc None
5100=Application is out of memory.

Просмотреть файл

@ -50,7 +50,6 @@ NS_END_EXTERN_C
#define IMAP_OUT_OF_MEMORY -1000
#define IMAP_STATUS_SELECTING_MAILBOX 5000
#define IMAP_STATUS_CREATING_MAILBOX 5001
#define IMAP_STATUS_DELETING_MAILBOX 5002
@ -82,11 +81,11 @@ NS_END_EXTERN_C
#define IMAP_RECEIVING_MESSAGE_HEADERS_OF 5036
#define IMAP_RECEIVING_MESSAGE_FLAGS_OF 5037
#define IMAP_DELETING_MESSAGES 5038
#define IMAP_DELETING_MESSAGE 5039
#define IMAP_MOVING_MESSAGES_TO 5040
#define IMAP_MOVING_MESSAGE_TO 5041
#define IMAP_COPYING_MESSAGES_TO 5042
#define IMAP_COPYING_MESSAGE_TO 5043
#define IMAP_DELETING_MESSAGE 5039
#define IMAP_MOVING_MESSAGES_TO 5040
#define IMAP_MOVING_MESSAGE_TO 5041
#define IMAP_COPYING_MESSAGES_TO 5042
#define IMAP_COPYING_MESSAGE_TO 5043
#define IMAP_SELECTING_MAILBOX 5044
#define IMAP_FOLDER_RECEIVING_MESSAGE_OF 5045
#define IMAP_DISCOVERING_MAILBOX 5046
@ -134,4 +133,5 @@ NS_END_EXTERN_C
#define IMAP_QUOTA_STATUS_FOLDERNOTOPEN 5095
#define IMAP_QUOTA_STATUS_NOTSUPPORTED 5096
#define IMAP_QUOTA_STATUS_NOQUOTA 5097
#define IMAP_OUT_OF_MEMORY 5100
#endif /* _nsImapStringBundle_H__ */