diff options
author | Dan Winship <danw@src.gnome.org> | 2000-12-14 03:56:34 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-12-14 03:56:34 +0800 |
commit | f70597c49ef593b3e2e227dd36b6df2641da74bb (patch) | |
tree | 8353a15088ca9ce05be989bc18dac74fd8566347 /camel/providers/pop3/camel-pop3-store.h | |
parent | bd99ceb9ff1f5819b01c842242a10f34f65bec57 (diff) | |
download | gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.tar gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.tar.gz gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.tar.bz2 gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.tar.lz gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.tar.xz gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.tar.zst gsoc2013-evolution-f70597c49ef593b3e2e227dd36b6df2641da74bb.zip |
change a bunch of IS_CAMEL_* macros to CAMEL_IS_*
* Namespace cleanup: change a bunch of IS_CAMEL_* macros to
CAMEL_IS_*
svn path=/trunk/; revision=6972
Diffstat (limited to 'camel/providers/pop3/camel-pop3-store.h')
-rw-r--r-- | camel/providers/pop3/camel-pop3-store.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/pop3/camel-pop3-store.h b/camel/providers/pop3/camel-pop3-store.h index cfa28f313f..65bf1cbdba 100644 --- a/camel/providers/pop3/camel-pop3-store.h +++ b/camel/providers/pop3/camel-pop3-store.h @@ -39,7 +39,7 @@ extern "C" { #define CAMEL_POP3_STORE_TYPE (camel_pop3_store_get_type ()) #define CAMEL_POP3_STORE(obj) (CAMEL_CHECK_CAST((obj), CAMEL_POP3_STORE_TYPE, CamelPop3Store)) #define CAMEL_POP3_STORE_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_POP3_STORE_TYPE, CamelPop3StoreClass)) -#define IS_CAMEL_POP3_STORE(o) (CAMEL_CHECK_TYPE((o), CAMEL_POP3_STORE_TYPE)) +#define CAMEL_IS_POP3_STORE(o) (CAMEL_CHECK_TYPE((o), CAMEL_POP3_STORE_TYPE)) typedef struct { |