diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-07-25 03:55:46 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-25 03:55:46 +0800 |
commit | b49ab03540d3b576f071f7c28bfd7ac5502dcfcb (patch) | |
tree | ed0acf2518c40ee4cb8f54461c7592cca1c0d2a3 /camel | |
parent | e10cb0ac03a487f75188db10278174874e679deb (diff) | |
download | gsoc2013-evolution-b49ab03540d3b576f071f7c28bfd7ac5502dcfcb.tar.gz gsoc2013-evolution-b49ab03540d3b576f071f7c28bfd7ac5502dcfcb.tar.zst gsoc2013-evolution-b49ab03540d3b576f071f7c28bfd7ac5502dcfcb.zip |
New #define, and there was much rejoicing. Rah.
2001-07-24 Jeffrey Stedfast <fejj@ximian.com>
* camel-url.h (CAMEL_URL_HIDE_ALL): New #define, and there was
much rejoicing. Rah.
svn path=/trunk/; revision=11351
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-url.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 4ababadcf5..59cadc3f9a 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2001-07-24 Jeffrey Stedfast <fejj@ximian.com> + + * camel-url.h (CAMEL_URL_HIDE_ALL): New #define, and there was + much rejoicing. Rah. + 2001-07-24 Not Zed <NotZed@Ximian.com> * camel-operation.c (camel_operation_register, unregister): Added diff --git a/camel/camel-url.h b/camel/camel-url.h index f1b425d96b..b1bf3bd7ed 100644 --- a/camel/camel-url.h +++ b/camel/camel-url.h @@ -53,6 +53,8 @@ typedef struct { #define CAMEL_URL_HIDE_PARAMS (1 << 1) #define CAMEL_URL_HIDE_AUTH (1 << 2) +#define CAMEL_URL_HIDE_ALL (CAMEL_URL_HIDE_PASSWORD | CAMEL_URL_HIDE_PARAMS | CAMEL_URL_HIDE_AUTH) + CamelURL *camel_url_new_with_base (CamelURL *base, const char *url_string); CamelURL *camel_url_new (const char *url_string, CamelException *ex); char *camel_url_to_string (CamelURL *url, guint32 flags); |