Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DLNA-RUI
gupnp
Commits
c60f1b4c
Commit
c60f1b4c
authored
Sep 06, 2010
by
Ross Burton
Browse files
Remove no-op finalize in GUPnPContextManager
parent
c9000a72
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgupnp/gupnp-context-manager.c
View file @
c60f1b4c
...
...
@@ -241,19 +241,6 @@ gupnp_context_manager_dispose (GObject *object)
object_class
->
dispose
(
object
);
}
static
void
gupnp_context_manager_finalize
(
GObject
*
object
)
{
GUPnPContextManager
*
manager
;
GObjectClass
*
object_class
;
manager
=
GUPNP_CONTEXT_MANAGER
(
object
);
/* Call super */
object_class
=
G_OBJECT_CLASS
(
gupnp_context_manager_parent_class
);
object_class
->
finalize
(
object
);
}
static
void
gupnp_context_manager_class_init
(
GUPnPContextManagerClass
*
klass
)
{
...
...
@@ -264,7 +251,6 @@ gupnp_context_manager_class_init (GUPnPContextManagerClass *klass)
object_class
->
set_property
=
gupnp_context_manager_set_property
;
object_class
->
get_property
=
gupnp_context_manager_get_property
;
object_class
->
dispose
=
gupnp_context_manager_dispose
;
object_class
->
finalize
=
gupnp_context_manager_finalize
;
g_type_class_add_private
(
klass
,
sizeof
(
GUPnPContextManagerPrivate
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment