From fa0d7a25b665db353b859e3785271d02dfb2be36 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Tue, 11 Jan 2005 17:36:15 +0000 Subject: Use the enums instead of ints. 2005-01-11 Christian Persch * embed/ephy-cookie-manager.h: * embed/mozilla/EphySingle.cpp: Use the enums instead of ints. --- embed/ephy-cookie-manager.h | 8 ++++---- embed/mozilla/EphySingle.cpp | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'embed') diff --git a/embed/ephy-cookie-manager.h b/embed/ephy-cookie-manager.h index de7aed2e6..43e2282af 100644 --- a/embed/ephy-cookie-manager.h +++ b/embed/ephy-cookie-manager.h @@ -66,10 +66,10 @@ typedef struct char *path; gulong expires; glong real_expires; - guint is_secure : 1; - guint is_session : 1; - guint p3p_state : 3; - guint p3p_policy : 3; + EphyCookieP3PState p3p_state; + EphyCookieP3PPolicy p3p_policy; + guint is_secure : 1; + guint is_session : 1; } EphyCookie; struct _EphyCookieManagerIface diff --git a/embed/mozilla/EphySingle.cpp b/embed/mozilla/EphySingle.cpp index 29deaa230..6e27194d5 100644 --- a/embed/mozilla/EphySingle.cpp +++ b/embed/mozilla/EphySingle.cpp @@ -278,11 +278,11 @@ mozilla_cookie_to_ephy_cookie (nsICookie *cookie) nsCookieStatus status; cookie->GetStatus (&status); - info->p3p_state = status; + info->p3p_state = (EphyCookieP3PState) status; nsCookiePolicy policy; cookie->GetPolicy (&policy); - info->p3p_policy = policy; + info->p3p_policy = (EphyCookieP3PPolicy) policy; PRUint64 dateTime; cookie->GetExpires (&dateTime); -- cgit v1.2.3