* mu-msg-flags.[ch]: minor

This commit is contained in:
Dirk-Jan C. Binnema 2010-11-21 15:42:08 +02:00
parent 085d0732c1
commit 79395b11ac
2 changed files with 4 additions and 4 deletions

View File

@ -65,7 +65,7 @@ mu_msg_flag_from_char (char k)
const char* const char*
mu_msg_flag_to_name (MuMsgFlags flag) mu_msg_flag_name (MuMsgFlags flag)
{ {
switch (flag) { switch (flag) {
case MU_MSG_FLAG_NEW: return "new"; case MU_MSG_FLAG_NEW: return "new";
@ -107,7 +107,7 @@ mu_msg_flag_char (MuMsgFlags flag)
} }
const char* const char*
mu_msg_flags_to_str_s (MuMsgFlags flags) mu_msg_flags_str_s (MuMsgFlags flags)
{ {
int i, j; int i, j;
static char buf[16]; /* more than enough */ static char buf[16]; /* more than enough */

View File

@ -103,7 +103,7 @@ MuMsgFlags mu_msg_flags_from_char (char c) G_GNUC_CONST;
* *
* @return a string representation of the flags * @return a string representation of the flags
*/ */
const char* mu_msg_flags_to_str_s (MuMsgFlags flags) G_GNUC_CONST; const char* mu_msg_flags_str_s (MuMsgFlags flags) G_GNUC_CONST;
/** /**
@ -125,7 +125,7 @@ char mu_msg_flag_char (MuMsgFlags flag) G_GNUC_CONST;
* @return a string describing this flag, e.g., * @return a string describing this flag, e.g.,
* MU_MSG_FLAG_ATTACH=>"attach" * MU_MSG_FLAG_ATTACH=>"attach"
*/ */
const char* mu_msg_flag_to_name (MuMsgFlags flag) G_GNUC_CONST; const char* mu_msg_flag_name (MuMsgFlags flag) G_GNUC_CONST;