diff options
author | Hub Figuiere <hub@figuiere.net> | 2011-11-04 01:32:10 -0400 |
---|---|---|
committer | Hub Figuiere <hub@figuiere.net> | 2011-11-16 21:22:12 -0800 |
commit | 290483533a14dbcbf73737d6bb98b22c031ac592 (patch) | |
tree | 973eddbe49d67b0a83ac255be90a5886bb200e5a | |
parent | 6d6b1744c39c19982e162d112375ef5b36fe77f6 (diff) | |
download | glibmm-290483533a14dbcbf73737d6bb98b22c031ac592.tar.gz |
Ensure template parameter has a space before to avoid trigraphs.
(Gtkmm bug #663303)
* tools/m4/property.m4: Ensure template parameter has a space
before to avoid trigraphs.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | tools/m4/property.m4 | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2011-11-16 Hub Figuière <hub@figuiere.net> + + Ensure template parameter has a space before to avoid trigraphs. + (Gtkmm bug #663303) + + * tools/m4/property.m4: Ensure template parameter has a space + before to avoid trigraphs. + 2011-10-26 José Alburquerque <jaalburqu@svn.gnome.org> giomm: Add some unwrapped methods and properties. diff --git a/tools/m4/property.m4 b/tools/m4/property.m4 index 4a9877bd..aae8f707 100644 --- a/tools/m4/property.m4 +++ b/tools/m4/property.m4 @@ -15,7 +15,7 @@ define(`_PROPERTY_PROXY',`dnl dnl dnl Put spaces around the template parameter if necessary. pushdef(`__PROXY_TYPE__',`dnl -Glib::PropertyProxy$4<'ifelse(regexp(_QUOTE($3),`>$'),`-1',_QUOTE($3),` '_QUOTE($3)` ')`>'dnl +Glib::PropertyProxy$4< _QUOTE($3) >'dnl )dnl #ifdef GLIBMM_PROPERTIES_ENABLED /** $5 |