aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--embed/ephy-history.c2
-rw-r--r--src/bookmarks/ephy-bookmarks.c2
-rw-r--r--src/ephy-window.c10
-rw-r--r--src/prefs-dialog.c2
5 files changed, 17 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index f71086ca3..9ee541c52 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
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.
+
+2005-01-30 Christian Persch <chpe@cvs.gnome.org>
+
* embed/mozilla/mozilla-embed-single.cpp:
Don't crash if we get the new-window signal on the embed single
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index 52603d82b..6b2b71f72 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -582,7 +582,7 @@ ephy_history_finalize (GObject *object)
}
EphyHistory *
-ephy_history_new ()
+ephy_history_new (void)
{
return EPHY_HISTORY (g_object_new (EPHY_TYPE_HISTORY, NULL));
}
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;