epiphany r8565 - trunk/lib/widgets



Author: diegoe
Date: Mon Sep 29 05:55:37 2008
New Revision: 8565
URL: http://svn.gnome.org/viewvc/epiphany?rev=8565&view=rev

Log:
Minor nitpick in the .h files

Modified:
   trunk/lib/widgets/ephy-location-entry.h
   trunk/lib/widgets/ephy-search-entry.h

Modified: trunk/lib/widgets/ephy-location-entry.h
==============================================================================
--- trunk/lib/widgets/ephy-location-entry.h	(original)
+++ trunk/lib/widgets/ephy-location-entry.h	Mon Sep 29 05:55:37 2008
@@ -38,8 +38,8 @@
 #define EPHY_IS_LOCATION_ENTRY_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE((klass), EPHY_TYPE_LOCATION_ENTRY))
 #define EPHY_LOCATION_ENTRY_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS((obj), EPHY_TYPE_LOCATION_ENTRY, EphyLocationEntryClass))
 
-typedef struct _EphyLocationEntry		EphyLocationEntry;
 typedef struct _EphyLocationEntryClass		EphyLocationEntryClass;
+typedef struct _EphyLocationEntry		EphyLocationEntry;
 typedef struct _EphyLocationEntryPrivate	EphyLocationEntryPrivate;
 
 struct _EphyLocationEntryClass

Modified: trunk/lib/widgets/ephy-search-entry.h
==============================================================================
--- trunk/lib/widgets/ephy-search-entry.h	(original)
+++ trunk/lib/widgets/ephy-search-entry.h	Mon Sep 29 05:55:37 2008
@@ -36,23 +36,23 @@
 #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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]