diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rwxr-xr-x | embed/find-dialog.c | 7 | ||||
-rw-r--r-- | lib/ephy-start-here.c | 2 |
5 files changed, 31 insertions, 5 deletions
@@ -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. @@ -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" |