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
@ -17,6 +17,7 @@ mutter_plugin_get_stage (MutterPlugin *plugin)
|
|||||||
GList *
|
GList *
|
||||||
mutter_plugin_get_windows (MutterPlugin *plugin)
|
mutter_plugin_get_windows (MutterPlugin *plugin)
|
||||||
{
|
{
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -35,19 +36,23 @@ mutter_plugin_set_stage_input_area (MutterPlugin *plugin,
|
|||||||
MetaScreen *
|
MetaScreen *
|
||||||
mutter_plugin_get_screen (MutterPlugin *plugin)
|
mutter_plugin_get_screen (MutterPlugin *plugin)
|
||||||
{
|
{
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
Display *
|
Display *
|
||||||
meta_display_get_xdisplay (MetaDisplay *display)
|
meta_display_get_xdisplay (MetaDisplay *display)
|
||||||
{
|
{
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
MetaDisplay *
|
MetaDisplay *
|
||||||
meta_screen_get_display (MetaScreen *display)
|
meta_screen_get_display (MetaScreen *display)
|
||||||
{
|
{
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
Window
|
Window
|
||||||
meta_screen_get_xroot (MetaScreen *display)
|
meta_screen_get_xroot (MetaScreen *display)
|
||||||
{
|
{
|
||||||
|
return None;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user