diff options
author | Cosimo Cecchi <cosimoc@svn.gnome.org> | 2007-09-10 01:49:34 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@src.gnome.org> | 2007-09-10 01:49:34 +0800 |
commit | 0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7 (patch) | |
tree | b3be6fb6aa486e4b971e2d45bbab67df012df5d9 /lib/widgets/ephy-search-entry.h | |
parent | 56a321d56e13c6ba2b635e2b2066d4337a5046ad (diff) | |
download | gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.tar gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.tar.gz gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.tar.bz2 gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.tar.lz gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.tar.xz gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.tar.zst gsoc2013-epiphany-0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7.zip |
Modifies the EphySearchEntry to inherit from EphyIconEntry instead of
2007-09-09 Cosimo Cecchi <cosimoc@svn.gnome.org>
* lib/widgets/ephy-search-entry.c: (ephy_search_entry_get_type),
(ephy_search_entry_timeout_cb), (ephy_search_entry_changed_cb),
(ephy_search_entry_init), (ephy_search_entry_clear):
* lib/widgets/ephy-search-entry.h:
* src/bookmarks/ephy-bookmarks-editor.c: (search_entry_clear_cb),
(build_search_box):
Modifies the EphySearchEntry to inherit from EphyIconEntry instead of
GtkEntry, to have icons on it. Adds a cleaner icon in the search
entry of Bookmarks Editor. Fixes bug #463469.
svn path=/trunk/; revision=7358
Diffstat (limited to 'lib/widgets/ephy-search-entry.h')
-rw-r--r-- | lib/widgets/ephy-search-entry.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/widgets/ephy-search-entry.h b/lib/widgets/ephy-search-entry.h index 3ffd2f47e..abb90cc47 100644 --- a/lib/widgets/ephy-search-entry.h +++ b/lib/widgets/ephy-search-entry.h @@ -21,7 +21,7 @@ #ifndef EPHY_SEARCH_ENTRY_H #define EPHY_SEARCH_ENTRY_H -#include <gtk/gtkentry.h> +#include "ephy-icon-entry.h" G_BEGIN_DECLS @@ -38,7 +38,7 @@ typedef struct _EphySearchEntryClass EphySearchEntryClass; struct _EphySearchEntry { - GtkEntry parent; + EphyIconEntry parent; /*< private >*/ EphySearchEntryPrivate *priv; @@ -46,7 +46,7 @@ struct _EphySearchEntry struct _EphySearchEntryClass { - GtkEntryClass parent; + EphyIconEntryClass parent; void (*search) (EphySearchEntry *view, const char *text); }; |