aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-05-19 01:11:24 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-05-19 01:11:24 +0800
commitea50f388412c9c4d880bea7aa770d079b8c9141c (patch)
tree398773c8718935775025f0207e08189f56665a8d
parentc5202864540e0ac530dde2e4eb18a7e22fe699d8 (diff)
downloadgsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar
gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.gz
gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.bz2
gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.lz
gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.xz
gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.tar.zst
gsoc2013-epiphany-ea50f388412c9c4d880bea7aa770d079b8c9141c.zip
0.6.1
2003-05-18 Marco Pesenti Gritti <marco@it.gnome.org> * NEWS: * configure.in: 0.6.1 * embed/find-dialog.c: (dialog_constrain_height): Missing cast. * lib/ephy-start-here.c: Missing header.
-rw-r--r--ChangeLog15
-rw-r--r--NEWS10
-rw-r--r--configure.in2
-rwxr-xr-xembed/find-dialog.c7
-rw-r--r--lib/ephy-start-here.c2
5 files changed, 31 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index b0fdeeedd..204fb99a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2003-05-18 Marco Pesenti Gritti <marco@it.gnome.org>
+
+ * NEWS:
+ * configure.in:
+
+ 0.6.1
+
+ * embed/find-dialog.c: (dialog_constrain_height):
+
+ Missing cast.
+
+ * lib/ephy-start-here.c:
+
+ Missing header.
+
2003-05-18 Xan Lopez <xan@masilla.org>
* NEWS: Updates, typos.
diff --git a/NEWS b/NEWS
index a89ef2e8f..2b23e4e33 100644
--- a/NEWS
+++ b/NEWS
@@ -65,6 +65,16 @@ Bugfixes
* Make our string ellipsizing helper utf8 save (Christian Persch)
* Various internationalization fixes (Christian Neumair)
+Updated translations
+
+ * cs (Miloslav Trmac)
+ * da (Ole Laursen)
+ * de (Christian Neumair)
+ * es (Francisco Javier Fernandez)
+ * ja (Takayuki KUSANO)
+ * ms (Hasbullah Bin Pit)
+ * pt_BR (Evandro Fernandes Giovanini)
+
==============
Epiphany 0.6.0
==============
diff --git a/configure.in b/configure.in
index 32baea042..66a9dc1b6 100644
--- a/configure.in
+++ b/configure.in
@@ -30,7 +30,7 @@ AC_SUBST(LIBBONOBOUI_REQUIRED)
AC_ENABLE_SHARED(yes)
AC_ENABLE_STATIC(no)
-AM_INIT_AUTOMAKE(epiphany, 0.6.0)
+AM_INIT_AUTOMAKE(epiphany, 0.6.1)
AM_CONFIG_HEADER(config.h)
AM_PROG_LIBTOOL
diff --git a/embed/find-dialog.c b/embed/find-dialog.c
index 9951d548d..41309c482 100755
--- a/embed/find-dialog.c
+++ b/embed/find-dialog.c
@@ -258,10 +258,11 @@ dialog_constrain_height (FindDialog *dialog)
{
GdkGeometry geometry;
GtkWindow *window = GTK_WINDOW (dialog->priv->window);
-
+
/* Do not allow to resize the widget vertically */
- geometry.max_height = 0;
- geometry.max_width = gdk_screen_get_width (gtk_widget_get_screen (window));;
+ geometry.max_height = 0;
+ geometry.max_width = gdk_screen_get_width
+ (gtk_widget_get_screen (GTK_WIDGET (window)));
gtk_window_set_geometry_hints (window, GTK_WIDGET (window),
&geometry,
GDK_HINT_MAX_SIZE);
diff --git a/lib/ephy-start-here.c b/lib/ephy-start-here.c
index d35701030..f51314b99 100644
--- a/lib/ephy-start-here.c
+++ b/lib/ephy-start-here.c
@@ -22,7 +22,7 @@
#include <gtk/gtk.h>
#include <libxml/tree.h>
-#include <bonobo/bonobo-i18n.h>
+#include <libgnome/gnome-i18n.h>
#include <string.h>
#include "ephy-start-here.h"