Index: ephy-sample2-extension.c
===================================================================
--- ephy-sample2-extension.c	(révision 1631)
+++ ephy-sample2-extension.c	(copie de travail)
@@ -106,13 +106,10 @@
 static void
 impl_attach_tab (EphyExtension *ext,
 		 EphyWindow *window,
-		 EphyTab *tab)
+		 EphyEmbed *embed)
 {
-	EphyEmbed *embed;
-
 	LOG ("impl_attach_tab");
 
-	embed = ephy_tab_get_embed (tab);
 	g_return_if_fail (EPHY_IS_EMBED (embed));
 
 	g_signal_connect (embed, "ge_dom_mouse_down",
@@ -122,13 +119,10 @@
 static void
 impl_detach_tab (EphyExtension *ext,
 		 EphyWindow *window,
-		 EphyTab *tab)
+		 EphyEmbed *embed)
 {
-	EphyEmbed *embed;
-
 	LOG ("impl_detach_tab");
 
-	embed = ephy_tab_get_embed (tab);
 	g_return_if_fail (EPHY_IS_EMBED (embed));
 
 	g_signal_handlers_disconnect_by_func
Index: mozilla/mozilla-sample.cpp
===================================================================
--- mozilla/mozilla-sample.cpp	(révision 1631)
+++ mozilla/mozilla-sample.cpp	(copie de travail)
@@ -44,5 +44,4 @@
 	NS_ENSURE_SUCCESS (rv,);
 
 	g_print ("Button %u\n", button);
-	
 }
Index: sample-mozilla.c
===================================================================
--- sample-mozilla.c	(révision 1631)
+++ sample-mozilla.c	(copie de travail)
@@ -35,9 +35,9 @@
 	LOG ("Registering EphySample2Extension");
 
 #ifdef ENABLE_NLS
-       /* Initialise the i18n stuff */
-        bindtextdomain (GETTEXT_PACKAGE, EPHY_EXTENSIONS_LOCALEDIR);
-        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");	
+	/* Initialise the i18n stuff */
+	bindtextdomain (GETTEXT_PACKAGE, EPHY_EXTENSIONS_LOCALEDIR);
+	bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
 #endif /* ENABLE_NLS */
 
 	return ephy_sample2_extension_register_type (module);
