mutter_window_get_description()

Human redable description useful for debugging, now accessible to plugins and
  and also for override redirect windows.
This commit is contained in:
Tomas Frydrych
2008-10-30 08:30:42 +00:00
parent b2fe0097e6
commit ce2bfc008d
4 changed files with 34 additions and 1 deletions

View File

@@ -8293,3 +8293,11 @@ meta_window_is_hidden (MetaWindow *window)
return window->hidden;
}
const char *
meta_window_get_description (MetaWindow *window)
{
if (!window)
return NULL;
return window->desc;
}