diff options
author | Jörg Mayer <jmayer@loplof.de> | 2011-08-07 18:15:45 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2011-08-07 18:15:45 +0000 |
commit | c15ff441c66bf3592c03936d8a08a69ac8402377 (patch) | |
tree | b8bd2c48af92dcf50aa9122b8cb9fb6cb0580da8 /plugins/mate | |
parent | 9e61dfeb338e86e0e8ff6e1a2ef87674d02b4d0d (diff) |
Replace deprecated glib functions.
In order to compile the whole project with -DG_DISABLE_DEPRECATED
the mate plugin needs to replace its usage of GMemChunk.
All other places should be clean.
svn path=/trunk/; revision=38392
Diffstat (limited to 'plugins/mate')
-rw-r--r-- | plugins/mate/mate_grammar.lemon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/mate_grammar.lemon b/plugins/mate/mate_grammar.lemon index 2afa8dec2d..f6236ba766 100644 --- a/plugins/mate/mate_grammar.lemon +++ b/plugins/mate/mate_grammar.lemon @@ -132,7 +132,7 @@ static gchar* recolonize(mate_config* mc, gchar* s) { vec = g_strsplit(s,":",0); for (i = 0; vec[i]; i++) { - g_strdown(vec[i]); + g_ascii_strdown(vec[i]); v = 0; switch ( strlen(vec[i]) ) { |