mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 19:10:43 -05:00
Removed deprecated calls. Closes #560445.
* src/core/delete.c: remove deprecated g_strcasecmp. * src/include/main.h: no actual deprecated call, but a mention of one which was out of date. svn path=/trunk/; revision=4018
This commit is contained in:
parent
39e389cc5b
commit
8524f510c6
@ -1,3 +1,11 @@
|
|||||||
|
2008-11-11 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
|
Removed deprecated calls. Closes #560445.
|
||||||
|
|
||||||
|
* src/core/delete.c: remove deprecated g_strcasecmp.
|
||||||
|
* src/include/main.h: no actual deprecated call, but
|
||||||
|
a mention of one which was out of date.
|
||||||
|
|
||||||
2008-11-11 Maxim Ermilov <zaspire@rambler.ru>
|
2008-11-11 Maxim Ermilov <zaspire@rambler.ru>
|
||||||
|
|
||||||
Clean up #includes according to the GNOME Goal.
|
Clean up #includes according to the GNOME Goal.
|
||||||
|
@ -491,7 +491,7 @@ meta_window_present_delete_dialog (MetaWindow *window, guint32 timestamp)
|
|||||||
|
|
||||||
if (w->xtransient_for == window->xwindow &&
|
if (w->xtransient_for == window->xwindow &&
|
||||||
w->res_class &&
|
w->res_class &&
|
||||||
g_strcasecmp (w->res_class, "metacity-dialog") == 0)
|
g_ascii_strcasecmp (w->res_class, "metacity-dialog") == 0)
|
||||||
{
|
{
|
||||||
meta_window_activate (w, timestamp);
|
meta_window_activate (w, timestamp);
|
||||||
break;
|
break;
|
||||||
|
@ -35,7 +35,7 @@ typedef enum
|
|||||||
/* exit immediately */
|
/* exit immediately */
|
||||||
void meta_exit (MetaExitCode code);
|
void meta_exit (MetaExitCode code);
|
||||||
|
|
||||||
/* g_main_quit() then fall out of main() */
|
/* g_main_loop_quit() then fall out of main() */
|
||||||
void meta_quit (MetaExitCode code);
|
void meta_quit (MetaExitCode code);
|
||||||
|
|
||||||
void meta_restart (void);
|
void meta_restart (void);
|
||||||
|
Loading…
Reference in New Issue
Block a user