summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schmid <johannes.schmid@openismus.com>2007-04-09 17:34:12 +0000
committerJohannes Schmid <jhs@src.gnome.org>2007-04-09 17:34:12 +0000
commit86ee31541d53337a6e609d60fd13c9eddd9c3934 (patch)
tree8e2297349d990dae1f4428ac577250621dcbb236
parentff162429862fbd69b760519e109c9d3cec3a4a4e (diff)
downloadglibmm-86ee31541d53337a6e609d60fd13c9eddd9c3934.tar.gz
Use _CLASS_DEPRECATE instead of just _DEPRECATE to known whether a whole
2007-04-06 Johannes Schmid <johannes.schmid@openismus.com> * tools/generate_wrap_init.pl.in: Use _CLASS_DEPRECATE instead of just _DEPRECATE to known whether a whole class should be avoided in wrap_init. Otherwise every .hg file containing deprecated methods might get ignored. (Fixes Gtk::TextBuffer bug in maemo) svn path=/branches/glibmm-2-12/; revision=391
-rw-r--r--ChangeLog8
-rw-r--r--tools/generate_wrap_init.pl.in2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e9949bc7..e2d442a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-04-06 Johannes Schmid <johannes.schmid@openismus.com>
+
+ * tools/generate_wrap_init.pl.in:
+ Use _CLASS_DEPRECATE instead of just _DEPRECATE to
+ known whether a whole class should be avoided in wrap_init.
+ Otherwise every .hg file containing deprecated methods
+ might get ignored. (Fixes Gtk::TextBuffer bug in maemo)
+
2007-03-19 Bradley Bell <btb@debian.org>
* glib/glibmm/helperlist.h: Change variable name to avoid
diff --git a/tools/generate_wrap_init.pl.in b/tools/generate_wrap_init.pl.in
index 202b5874..8d9a7621 100644
--- a/tools/generate_wrap_init.pl.in
+++ b/tools/generate_wrap_init.pl.in
@@ -133,7 +133,7 @@ while ($ARGV[0])
{
$win32_nowrap{$cppname} = 1;
}
- elsif (/_DEPRECATED/)
+ elsif (/_CLASS_DEPRECATED/)
{
$deprecated{$cppname} = 1;
}