aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-search-entry.h
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2008-09-29 13:55:37 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2008-09-29 13:55:37 +0800
commit049164e25784d902bd69439b62da8eaf17db6d0b (patch)
tree10e1ee87c5d10df6510e81a03de8114388cb5df3 /lib/widgets/ephy-search-entry.h
parentd38bc67fc77f6511f0bfec314ca20c35b422390e (diff)
downloadgsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.tar
gsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.tar.gz
gsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.tar.bz2
gsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.tar.lz
gsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.tar.xz
gsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.tar.zst
gsoc2013-epiphany-049164e25784d902bd69439b62da8eaf17db6d0b.zip
Minor nitpick in the .h files
svn path=/trunk/; revision=8565
Diffstat (limited to 'lib/widgets/ephy-search-entry.h')
-rw-r--r--lib/widgets/ephy-search-entry.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/widgets/ephy-search-entry.h b/lib/widgets/ephy-search-entry.h
index 72ae570bd..08446a882 100644
--- a/lib/widgets/ephy-search-entry.h
+++ b/lib/widgets/ephy-search-entry.h
@@ -36,23 +36,23 @@ G_BEGIN_DECLS
#define EPHY_IS_SEARCH_ENTRY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SEARCH_ENTRY))
#define EPHY_SEARCH_ENTRY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SEARCH_ENTRY, EphySearchEntryClass))
+typedef struct _EphySearchEntryClass EphySearchEntryClass;
typedef struct _EphySearchEntry EphySearchEntry;
typedef struct _EphySearchEntryPrivate EphySearchEntryPrivate;
-typedef struct _EphySearchEntryClass EphySearchEntryClass;
-struct _EphySearchEntry
+struct _EphySearchEntryClass
{
- EphyIconEntry parent;
+ EphyIconEntryClass parent;
- /*< private >*/
- EphySearchEntryPrivate *priv;
+ void (*search) (EphySearchEntry *view, const char *text);
};
-struct _EphySearchEntryClass
+struct _EphySearchEntry
{
- EphyIconEntryClass parent;
+ EphyIconEntry parent;
- void (*search) (EphySearchEntry *view, const char *text);
+ /*< private >*/
+ EphySearchEntryPrivate *priv;
};
GType ephy_search_entry_get_type (void);