aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-01-31 04:12:08 +0800
committerChristian Persch <chpe@src.gnome.org>2005-01-31 04:12:08 +0800
commit43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635 (patch)
treea67c67c80051314796ab62e9534deb8bd2a46b71 /src
parent55bd674a3c1ed29cd2df0f371d85046aa773dcbd (diff)
downloadgsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.tar
gsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.tar.gz
gsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.tar.bz2
gsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.tar.lz
gsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.tar.xz
gsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.tar.zst
gsoc2013-epiphany-43f229ae4bf329c0b7d4f46cb4d1853fe9ba0635.zip
Some sparse fixes.
2005-01-30 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-history.c: (ephy_history_new): * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_new): * src/ephy-window.c: * src/prefs-dialog.c: (get_download_button_label): Some sparse fixes.
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks.c2
-rw-r--r--src/ephy-window.c10
-rw-r--r--src/prefs-dialog.c2
3 files changed, 7 insertions, 7 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c
index 0a94a8f16..c56442544 100644
--- a/src/bookmarks/ephy-bookmarks.c
+++ b/src/bookmarks/ephy-bookmarks.c
@@ -838,7 +838,7 @@ ephy_bookmarks_finalize (GObject *object)
}
EphyBookmarks *
-ephy_bookmarks_new ()
+ephy_bookmarks_new (void)
{
EphyBookmarks *eb;
diff --git a/src/ephy-window.c b/src/ephy-window.c
index a64997cc0..acea725b1 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -355,11 +355,11 @@ struct _EphyWindowPrivate
guint browse_with_caret_notifier_id;
guint allow_popups_notifier_id;
- gboolean closing : 1;
- gboolean has_size : 1;
- gboolean fullscreen_mode : 1;
- gboolean ppv_mode : 1;
- gboolean should_save_chrome : 1;
+ guint closing : 1;
+ guint has_size : 1;
+ guint fullscreen_mode : 1;
+ guint ppv_mode : 1;
+ guint should_save_chrome : 1;
};
enum
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c
index 52b956c98..546d2b1fa 100644
--- a/src/prefs-dialog.c
+++ b/src/prefs-dialog.c
@@ -1088,7 +1088,7 @@ create_language_section (EphyDialog *dialog)
}
static char*
-get_download_button_label ()
+get_download_button_label (void)
{
char *key, *label, *downloads_path, *converted_dp;