mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
Add dummy return values to metacity-symbols.c
Make sure that all functions in metacity-symbols.c with a return value return something so that the compilation is clean. svn path=/trunk/; revision=38
This commit is contained in:
parent
5de283b448
commit
ffed9df171
1 changed files with 5 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ mutter_plugin_get_stage (MutterPlugin *plugin)
|
|||
GList *
|
||||
mutter_plugin_get_windows (MutterPlugin *plugin)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -35,19 +36,23 @@ mutter_plugin_set_stage_input_area (MutterPlugin *plugin,
|
|||
MetaScreen *
|
||||
mutter_plugin_get_screen (MutterPlugin *plugin)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Display *
|
||||
meta_display_get_xdisplay (MetaDisplay *display)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
MetaDisplay *
|
||||
meta_screen_get_display (MetaScreen *display)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Window
|
||||
meta_screen_get_xroot (MetaScreen *display)
|
||||
{
|
||||
return None;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue