]> spindle.queued.net Git - midori/commitdiff
Don't shadow web_view in _action_source_view_activate
authorChristian Dywan <christian@twotoasts.de>
Wed, 27 Jul 2011 21:06:44 +0000 (23:06 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 27 Jul 2011 21:06:44 +0000 (23:06 +0200)
midori/midori-browser.c

index a67fc0501d2c402cdef29d123606acc4e9fa4174..63514e4e3236a0b58681a026b01189fd88cd2c15 100644 (file)
@@ -3394,7 +3394,7 @@ _action_source_view_activate (GtkAction*     action,
     if (!(text_editor && *text_editor))
     {
         GtkWidget* source;
-        GtkWidget* web_view;
+        GtkWidget* source_view;
         gchar* source_uri;
 
         source_uri = g_filename_to_uri (filename, NULL, NULL);
@@ -3402,9 +3402,9 @@ _action_source_view_activate (GtkAction*     action,
 
         source = midori_view_new (NULL);
         midori_view_set_settings (MIDORI_VIEW (source), browser->settings);
-        web_view = midori_view_get_web_view (MIDORI_VIEW (source));
-        webkit_web_view_set_view_source_mode (WEBKIT_WEB_VIEW (web_view), TRUE);
-        webkit_web_view_load_uri (WEBKIT_WEB_VIEW (web_view), source_uri);
+        source_view = midori_view_get_web_view (MIDORI_VIEW (source));
+        webkit_web_view_set_view_source_mode (WEBKIT_WEB_VIEW (source_view), TRUE);
+        webkit_web_view_load_uri (WEBKIT_WEB_VIEW (source_view), source_uri);
         gtk_widget_show (source);
         midori_browser_add_tab (browser, source);
     }