[nautilus/origin/wip/desktop-split-nofonclicts: 25/26] desktop-canvas-view-container: chain up to the parent



commit f8fd33edb66a10da0bcdaf8bdb12b9dbade9ae1d
Author: Carlos Soriano <csoriano gnome org>
Date:   Tue Apr 12 16:21:51 2016 +0200

    desktop-canvas-view-container: chain up to the parent
    
    A mistake to chain up to the same class, creating a loop.

 src/nautilus-desktop-canvas-view-container.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-desktop-canvas-view-container.c b/src/nautilus-desktop-canvas-view-container.c
index 9c6ab75..9ab442c 100644
--- a/src/nautilus-desktop-canvas-view-container.c
+++ b/src/nautilus-desktop-canvas-view-container.c
@@ -173,8 +173,8 @@ real_get_icon_description (NautilusCanvasContainer *container,
       return NULL;
     }
 
-  return NAUTILUS_CANVAS_CONTAINER_CLASS (G_OBJECT_GET_CLASS (container))->get_icon_description (container,
-                                                                                                 data);
+  return NAUTILUS_CANVAS_CONTAINER_CLASS 
(nautilus_desktop_canvas_view_container_parent_class)->get_icon_description (container,
+                                                                                                             
         data);
 }
 
 NautilusDesktopCanvasViewContainer *


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