cleanup: Drop empty vfuncs overrides
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3209>
This commit is contained in:

committed by
Marge Bot

parent
7d8d7c89d4
commit
b004d1c577
@ -141,27 +141,6 @@ meta_workspace_clear_logical_monitor_data (MetaWorkspace *workspace)
|
||||
g_clear_pointer (&workspace->logical_monitor_data, g_hash_table_destroy);
|
||||
}
|
||||
|
||||
static void
|
||||
meta_workspace_finalize (GObject *object)
|
||||
{
|
||||
/* Actual freeing done in meta_workspace_remove() for now */
|
||||
G_OBJECT_CLASS (meta_workspace_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
meta_workspace_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
switch (prop_id)
|
||||
{
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
meta_workspace_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
@ -195,9 +174,7 @@ static void
|
||||
meta_workspace_class_init (MetaWorkspaceClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
object_class->finalize = meta_workspace_finalize;
|
||||
object_class->get_property = meta_workspace_get_property;
|
||||
object_class->set_property = meta_workspace_set_property;
|
||||
|
||||
signals[WINDOW_ADDED] = g_signal_new ("window-added",
|
||||
G_TYPE_FROM_CLASS (klass),
|
||||
|
Reference in New Issue
Block a user