diff options
Diffstat (limited to 'camel/providers/mbox')
-rw-r--r-- | camel/providers/mbox/camel-mbox-store.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/mbox/camel-mbox-store.c b/camel/providers/mbox/camel-mbox-store.c index 74ea8c3461..32d25becf1 100644 --- a/camel/providers/mbox/camel-mbox-store.c +++ b/camel/providers/mbox/camel-mbox-store.c @@ -28,7 +28,7 @@ #include "camel-mbox-store.h" #include "camel-mbox-folder.h" #include "camel-exception.h" -#include "url-util.h" +#include "camel-url.h" /* Returns the class for a CamelMboxStore */ #define CMBOXS_CLASS(so) CAMEL_MBOX_STORE_CLASS (GTK_OBJECT(so)->klass) @@ -88,7 +88,7 @@ camel_mbox_store_get_type (void) const gchar * camel_mbox_store_get_toplevel_dir (CamelMboxStore *store) { - Gurl *url = CAMEL_SERVICE (store)->url; + CamelURL *url = CAMEL_SERVICE (store)->url; g_assert(url != NULL); return url->path; |