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:
Owen Taylor 2008-11-08 15:49:01 +00:00
parent 5de283b448
commit ffed9df171

View File

@ -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;
}