diff options
author | monsta <[email protected]> | 2016-02-04 12:25:45 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-02-04 12:25:45 +0300 |
commit | 9067183f24fa846e02fb998ca1b466226c3bdd03 (patch) | |
tree | ad715347824b443a2aaeaf57c51478155a86425f /libslab/nameplate-tile.c | |
parent | e43cefea3dc8c53f276b540f2aaee7042b356f80 (diff) | |
download | mate-control-center-9067183f24fa846e02fb998ca1b466226c3bdd03.tar.bz2 mate-control-center-9067183f24fa846e02fb998ca1b466226c3bdd03.tar.xz |
libslab: remove useless function from a class
it did nothing, just chained up to parent class
Diffstat (limited to 'libslab/nameplate-tile.c')
-rw-r--r-- | libslab/nameplate-tile.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libslab/nameplate-tile.c b/libslab/nameplate-tile.c index a2161842..b9118130 100644 --- a/libslab/nameplate-tile.c +++ b/libslab/nameplate-tile.c @@ -22,7 +22,6 @@ static void nameplate_tile_class_init (NameplateTileClass *); static void nameplate_tile_init (NameplateTile *); -static void nameplate_tile_finalize (GObject *); static void nameplate_tile_get_property (GObject *, guint, GValue *, GParamSpec *); static void nameplate_tile_set_property (GObject *, guint, const GValue *, GParamSpec *); static GObject *nameplate_tile_constructor (GType, guint, GObjectConstructParam *); @@ -71,7 +70,6 @@ nameplate_tile_class_init (NameplateTileClass * this_class) g_obj_class->constructor = nameplate_tile_constructor; g_obj_class->get_property = nameplate_tile_get_property; g_obj_class->set_property = nameplate_tile_set_property; - g_obj_class->finalize = nameplate_tile_finalize; widget_class->drag_begin = nameplate_tile_drag_begin; @@ -107,18 +105,6 @@ nameplate_tile_constructor (GType type, guint n_param, GObjectConstructParam * p } static void -nameplate_tile_finalize (GObject * g_object) -{ - NameplateTile *np_tile; - NameplateTilePrivate *priv; - - np_tile = NAMEPLATE_TILE (g_object); - priv = NAMEPLATE_TILE_GET_PRIVATE (np_tile); - - (*G_OBJECT_CLASS (nameplate_tile_parent_class)->finalize) (g_object); -} - -static void nameplate_tile_get_property (GObject * g_object, guint prop_id, GValue * value, GParamSpec * param_spec) { |