[gnome-shell/wip/clutter-deprecation-fixes: 10/25] st-widget: Make into a concrete class



commit 9d00a60d76ad2fe46bcab6043827e3a0a54167b6
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Mon Feb 13 11:43:13 2012 -0500

    st-widget: Make into a concrete class
    
    ClutterActor is concrete, so StWidget should be too.

 src/st/st-widget.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/st/st-widget.c b/src/st/st-widget.c
index ea0f774..c5cc724 100644
--- a/src/st/st-widget.c
+++ b/src/st/st-widget.c
@@ -118,7 +118,7 @@ static guint signals[LAST_SIGNAL] = { 0, };
 
 gfloat st_slow_down_factor = 1.0;
 
-G_DEFINE_ABSTRACT_TYPE (StWidget, st_widget, CLUTTER_TYPE_ACTOR);
+G_DEFINE_TYPE (StWidget, st_widget, CLUTTER_TYPE_ACTOR);
 
 #define ST_WIDGET_GET_PRIVATE(obj)    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ST_TYPE_WIDGET, StWidgetPrivate))
 



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