diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-07 19:46:32 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-07 19:46:32 +0800 |
commit | a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96 (patch) | |
tree | 3bb1ffa79b1bf08dfff2e69d1412aad0180f7c47 /embed/ephy-embed-persist.h | |
parent | a7720cd6f5fee4f6add1a5808b7eacf7d23660c5 (diff) | |
download | gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.tar gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.tar.gz gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.tar.bz2 gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.tar.lz gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.tar.xz gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.tar.zst gsoc2013-epiphany-a79e0a2fae99ad0bdda9d04385fa5696e2f4fa96.zip |
Fix for MOZILLA_INTERNAL_API change, and for 64bit downloader change.
2005-04-07 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* embed/downloader-view.c: (update_download_row):
* embed/ephy-download.c:
* embed/ephy-download.h:
* embed/ephy-embed-persist.c: (ephy_embed_persist_set_max_size),
(ephy_embed_persist_set_property),
(ephy_embed_persist_get_property), (ephy_embed_persist_class_init):
* embed/ephy-embed-persist.h:
* embed/mozilla/ContentHandler.h:
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyContentPolicy.cpp:
* embed/mozilla/EphyHeaderSniffer.h:
* embed/mozilla/EphyHistoryListener.cpp:
* embed/mozilla/EphySidebar.cpp:
* embed/mozilla/EphySingle.cpp:
* embed/mozilla/EphyUtils.cpp:
* embed/mozilla/EventContext.cpp:
* embed/mozilla/FilePicker.cpp:
* embed/mozilla/FilePicker.h:
* embed/mozilla/GlobalHistory.cpp:
* embed/mozilla/GtkNSSClientAuthDialogs.cpp:
* embed/mozilla/GtkNSSDialogs.cpp:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/MozDownload.h:
* embed/mozilla/mozilla-download.cpp:
* embed/mozilla/mozilla-embed-single.cpp:
* embed/mozilla/mozilla-embed.cpp:
Fix for MOZILLA_INTERNAL_API change, and for 64bit downloader change.
Diffstat (limited to 'embed/ephy-embed-persist.h')
-rw-r--r-- | embed/ephy-embed-persist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embed/ephy-embed-persist.h b/embed/ephy-embed-persist.h index a0ea180c8..dfccaa719 100644 --- a/embed/ephy-embed-persist.h +++ b/embed/ephy-embed-persist.h @@ -48,7 +48,7 @@ typedef enum EPHY_EMBED_PERSIST_MAINDOC = 1 << 1, EPHY_EMBED_PERSIST_NO_VIEW = 1 << 2, EPHY_EMBED_PERSIST_ASK_DESTINATION = 1 << 3, - EPHY_EMBED_PERSIST_DO_CONVERSION = 1 << 4 + EPHY_EMBED_PERSIST_DO_CONVERSION = 1 << 4 } EphyEmbedPersistFlags; struct _EphyEmbedPersist @@ -98,7 +98,7 @@ void ephy_embed_persist_set_flags (EphyEmbedPersist *persist, EphyEmbedPersistFlags value); void ephy_embed_persist_set_max_size (EphyEmbedPersist *persist, - long value); + gint64 value); void ephy_embed_persist_set_persist_key (EphyEmbedPersist *persist, const char *value); @@ -118,7 +118,7 @@ GtkWindow *ephy_embed_persist_get_fc_parent (EphyEmbedPersist *persist); EphyEmbedPersistFlags ephy_embed_persist_get_flags (EphyEmbedPersist *persist); -long ephy_embed_persist_get_max_size (EphyEmbedPersist *persist); +gint64 ephy_embed_persist_get_max_size (EphyEmbedPersist *persist); const char *ephy_embed_persist_get_persist_key (EphyEmbedPersist *persist); |