[epiphany] ephy-find-toolbar: no need to cast return value here



commit e940c92f80d4a188bc687c03fa0239ed2a6b8863
Author: Xan Lopez <xan igalia com>
Date:   Thu Sep 13 18:16:50 2012 +0200

    ephy-find-toolbar: no need to cast return value here

 src/ephy-find-toolbar.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/ephy-find-toolbar.c b/src/ephy-find-toolbar.c
index c7a6312..901dc68 100644
--- a/src/ephy-find-toolbar.c
+++ b/src/ephy-find-toolbar.c
@@ -838,9 +838,9 @@ ephy_find_toolbar_class_init (EphyFindToolbarClass *klass)
 EphyFindToolbar *
 ephy_find_toolbar_new (EphyWindow *window)
 {
-	return EPHY_FIND_TOOLBAR (g_object_new (EPHY_TYPE_FIND_TOOLBAR,
-						"window", window,
-						NULL));
+	return g_object_new (EPHY_TYPE_FIND_TOOLBAR,
+			     "window", window,
+			     NULL);
 }
 
 const char *



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