mirror of
https://github.com/brl/mutter.git
synced 2024-11-30 20:01:00 -05:00
7655e09d00
While MetaStage, MetaWindowGroup and MetaDBusDisplayConfigSkeleton don't appear explicitly in the public API, their gtypes are still exposed via meta_get_stage_for_screen(), meta_get_*window_group_for_screen() and MetaMonitorManager's parent type. Newer versions of gjs will warn about undefined properties if it encounters a gtype without introspection information, so expose those types to shut up the warnings. https://bugzilla.gnome.org/show_bug.cgi?id=781471
12 lines
343 B
C
12 lines
343 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef META_WINDOW_GROUP_H
|
|
#define META_WINDOW_GROUP_H
|
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#define META_TYPE_WINDOW_GROUP (meta_window_group_get_type())
|
|
G_DECLARE_FINAL_TYPE (MetaWindowGroup, meta_window_group, META, WINDOW_GROUP, ClutterActor)
|
|
|
|
#endif /* META_WINDOW_GROUP_H */
|