aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-01-21 20:33:23 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-21 20:33:23 +0800
commit3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4 (patch)
treef3a6007429aee289b81f6fcc555ead9abfd83caf /lib
parent98a7051020195ab2b8a1174e60ab72e950dda42e (diff)
downloadgsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.gz
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.bz2
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.lz
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.xz
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.zst
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.zip
Api changes.
2003-01-21 Marco Pesenti Gritti <marco@it.gnome.org> * embed/mozilla/BaseProtocolContentHandler.cpp: * embed/mozilla/StartHereProtocolHandler.cpp: Api changes. * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize): * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): * embed/ephy-history.c: (ephy_history_host_visited), (ephy_history_set_page_title), (ephy_history_remove): * lib/widgets/ephy-spinner.c: (ephy_spinner_expose), (ephy_spinner_size_request): * lib/widgets/ephy-spinner.h: * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_finalize): * src/ephy-shell.c: (ephy_shell_finalize), (ephy_shell_get_autocompletion): * src/ephy-spinner-action.c: (create_tool_item): Nicer spinner size. Fix references problem and a lot of logs to make it easy to debug it.
Diffstat (limited to 'lib')
-rw-r--r--lib/widgets/ephy-spinner.c4
-rw-r--r--lib/widgets/ephy-spinner.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/widgets/ephy-spinner.c b/lib/widgets/ephy-spinner.c
index d1caf8fba..ba5aee66d 100644
--- a/lib/widgets/ephy-spinner.c
+++ b/lib/widgets/ephy-spinner.c
@@ -370,6 +370,8 @@ ephy_spinner_expose (GtkWidget *widget, GdkEventExpose *event)
g_return_val_if_fail (IS_EPHY_SPINNER (widget), FALSE);
+ GTK_WIDGET_CLASS (parent_class)->expose_event (widget, event);
+
spinner = EPHY_SPINNER (widget);
if (!spinner->details->ready) {
return FALSE;
@@ -721,7 +723,7 @@ ephy_spinner_size_request (GtkWidget *widget, GtkRequisition *requisition)
get_spinner_dimensions (spinner, &spinner_width, &spinner_height);
/* allocate some extra margin so we don't butt up against toolbar edges */
- requisition->width = spinner_width + 8;
+ requisition->width = spinner_width + 4;
requisition->height = spinner_height;
}
diff --git a/lib/widgets/ephy-spinner.h b/lib/widgets/ephy-spinner.h
index c72bee8c1..6aee728a0 100644
--- a/lib/widgets/ephy-spinner.h
+++ b/lib/widgets/ephy-spinner.h
@@ -65,9 +65,8 @@ GtkType ephy_spinner_get_type (void);
GtkWidget *ephy_spinner_new (void);
void ephy_spinner_start (EphySpinner *throbber);
void ephy_spinner_stop (EphySpinner *throbber);
-void ephy_spinner_set_small_mode (EphySpinner *throbber,
+void ephy_spinner_set_small_mode (EphySpinner *spinner,
gboolean new_mode);
-
GList *ephy_spinner_list_spinners (void);
void ephy_spinner_info_free (EphySpinnerInfo *info);