Remove unused _clutter_stage_window_set_title

Never used in mutter AFAICT.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3178>
This commit is contained in:
Michel Dänzer 2023-08-10 17:42:20 +02:00 committed by Marge Bot
parent f128bb4db1
commit 4238a4c30b
2 changed files with 0 additions and 12 deletions

View File

@ -23,16 +23,6 @@ clutter_stage_window_default_init (ClutterStageWindowInterface *iface)
{
}
void
_clutter_stage_window_set_title (ClutterStageWindow *window,
const gchar *title)
{
ClutterStageWindowInterface *iface = CLUTTER_STAGE_WINDOW_GET_IFACE (window);
if (iface->set_title)
iface->set_title (window, title);
}
gboolean
_clutter_stage_window_realize (ClutterStageWindow *window)
{

View File

@ -55,8 +55,6 @@ struct _ClutterStageWindowInterface
ClutterFrame *frame);
};
void _clutter_stage_window_set_title (ClutterStageWindow *window,
const gchar *title);
void _clutter_stage_window_set_cursor_visible (ClutterStageWindow *window,
gboolean is_visible);