<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-1344</id>
	<title>Nabble - Gtkmm</title>
	<updated>2008-07-23T09:20:00Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Gtkmm-f1344.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtkmm-f1344.html" />
	<subtitle type="html">gtkmm (previously known as Gtk--) is the official C++ interface for the popular GUI library GTK+.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-18616747</id>
	<title>Re: Gtk::Notebook memory management quirks</title>
	<published>2008-07-23T09:20:00Z</published>
	<updated>2008-07-23T09:20:00Z</updated>
	<author>
		<name>Julien Langer-2</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2008/7/23 Julien Langer &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616747&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;julien.langer@...&lt;/a&gt;&amp;gt;:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div dir=&quot;ltr&quot;&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div class=&quot;Ih2E3d&quot;&gt;2008/7/23 Murray Cumming &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616747&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

&lt;div&gt;On Wed, 2008-07-23 at 12:12 +0200, Julien Langer wrote:&lt;br&gt;
&amp;gt; 2008/7/23 Murray Cumming &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616747&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I don&amp;#39;t think that the builder should delete widgets. Do you&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; have a&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; simple-as-possible compileable test case that shows this? If&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; so, could&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; you please add it to bugzilla?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I load the widgets that are displayed on the notebook tab from a&lt;br&gt;
&amp;gt; GtkBuilder file.&lt;br&gt;
&amp;gt; Multiple tabs can be opened, so I need to create a new GtkBuilder for&lt;br&gt;
&amp;gt; each tab. (I didn&amp;#39;t find another way to replicate the widgets created&lt;br&gt;
&amp;gt; by the GtkBuilder).&lt;br&gt;
&amp;gt; Each of these GtkBuilder files has a VBox with the notebook contents&lt;br&gt;
&amp;gt; which is then added to the notebook as the child widget.&lt;br&gt;
&amp;gt; Once the tab is closed I release the last reference to the&lt;br&gt;
&amp;gt; RefPtr&amp;lt;GtkBuilder&amp;gt; (Of course I need to make sure that no one else&lt;br&gt;
&amp;gt; also holds a reference to the same GtkBuilder). The GtkBuilder will&lt;br&gt;
&amp;gt; then release the VBox.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;Again, I don&amp;#39;t think that&amp;#39;s true, or that it should be true. Do you have&lt;br&gt;
&lt;div&gt;a simple-as-possible compileable test case that shows this?&lt;br&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;I&amp;#39;m currently not at home so I can&amp;#39;t prepare an example but the documentation of the GtkBuilder says:&lt;br&gt;&amp;quot;A GtkBuilder holds a reference to all objects that it has constructed
and drops these references when it is finalized. This finalization can 
cause the destruction of non-widget objects or widgets which are not 
contained in a toplevel window. For toplevel windows constructed by a 
builder, it is the responsibility of the user to call &lt;a href=&quot;http://library.gnome.org/devel/gtk/stable/GtkWidget.html#gtk-widget-destroy&quot; title=&quot;gtk_widget_destroy ()&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;code&gt;gtk_widget_destroy()&lt;/code&gt;&lt;/a&gt; 
to get rid of them and all the widgets they contain.
&amp;quot;&lt;br&gt;&lt;a href=&quot;http://library.gnome.org/devel/gtk/stable/GtkBuilder.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://library.gnome.org/devel/gtk/stable/GtkBuilder.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That&amp;#39;s for plain Gtk though, the Gtkmm documentation doesn&amp;#39;t say anything about GtkBuilder&amp;#39;s memory management.&lt;br&gt;

&lt;br&gt;But that&amp;#39;s exactly what&amp;#39;s happening in my case since my GtkBuilder files do not contain a toplevel window.&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;Ok here&amp;#39;s a minimal example:&lt;br&gt;&lt;br&gt;main.cpp:&lt;br&gt;&lt;br&gt;struct MyHBox : public Gtk::HBox&lt;br&gt;
{&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyHBox(BaseObjectType* cobject, const Glib::RefPtr&amp;lt;Gtk::Builder&amp;gt;&amp;amp; builder)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;: Gtk::HBox(cobject) {}&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ~MyHBox()&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;std::cout &amp;lt;&amp;lt; &amp;quot;deleted&amp;quot; &amp;lt;&amp;lt; std::endl;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;};&lt;br&gt;&lt;br&gt;int main(int argc, char* argv[])&lt;br&gt;{&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Gtk::Main kit(argc, argv);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Glib::RefPtr&amp;lt;Gtk::Builder&amp;gt; builder = Gtk::Builder::create_from_file( &amp;quot;test.ui&amp;quot; );&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyHBox *box;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; builder-&amp;gt;get_widget_derived( &amp;quot;hbox&amp;quot;, box );&lt;br&gt;} &lt;br&gt;&lt;br&gt;test.ui:&lt;br&gt;&amp;lt;interface&amp;gt;&lt;br&gt;&amp;lt;object class=&amp;quot;GtkHBox&amp;quot; id=&amp;quot;hbox&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;property name=&amp;quot;visible&amp;quot;&amp;gt;True&amp;lt;/property&amp;gt;&lt;br&gt;
&amp;lt;child&amp;gt;&lt;br&gt;&amp;lt;placeholder/&amp;gt;&lt;br&gt;&amp;lt;/child&amp;gt;&lt;br&gt;&amp;lt;/object&amp;gt;&lt;br&gt;&amp;lt;/interface&amp;gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div dir=&quot;ltr&quot;&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div&gt;&lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;/div&gt;&lt;div class=&quot;Ih2E3d&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt; I first thought that the VBox is released by the notebook but then I&lt;br&gt;
&amp;gt; realized that it&amp;#39;s the GtkBuilder of course.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; It&amp;#39;s all a big hack of course but as I said earlier I didn&amp;#39;t find&lt;br&gt;
&amp;gt; another clever way to replicate widgets that come from a GtkBuilder&lt;br&gt;
&amp;gt; (I&amp;#39;d need something like a clone factory with the GtkBuilder providing&lt;br&gt;
&amp;gt; the examplar objects but as far as I know widgets can&amp;#39;t be copied or&lt;br&gt;
&amp;gt; cloned)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;--&lt;br&gt;
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616747&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.murrayc.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;www.murrayc.com&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.openismus.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;www.openismus.com&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616747&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtk%3A%3ANotebook-memory-management-quirks-tp18548877p18616747.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18616736</id>
	<title>Re: Gtk::Notebook memory management quirks</title>
	<published>2008-07-23T07:41:27Z</published>
	<updated>2008-07-23T07:41:27Z</updated>
	<author>
		<name>Julien Langer-2</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2008/7/23 Murray Cumming &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616736&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div class=&quot;Ih2E3d&quot;&gt;On Wed, 2008-07-23 at 12:12 +0200, Julien Langer wrote:&lt;br&gt;
&amp;gt; 2008/7/23 Murray Cumming &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616736&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I don&amp;#39;t think that the builder should delete widgets. Do you&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; have a&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; simple-as-possible compileable test case that shows this? If&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; so, could&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; you please add it to bugzilla?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I load the widgets that are displayed on the notebook tab from a&lt;br&gt;
&amp;gt; GtkBuilder file.&lt;br&gt;
&amp;gt; Multiple tabs can be opened, so I need to create a new GtkBuilder for&lt;br&gt;
&amp;gt; each tab. (I didn&amp;#39;t find another way to replicate the widgets created&lt;br&gt;
&amp;gt; by the GtkBuilder).&lt;br&gt;
&amp;gt; Each of these GtkBuilder files has a VBox with the notebook contents&lt;br&gt;
&amp;gt; which is then added to the notebook as the child widget.&lt;br&gt;
&amp;gt; Once the tab is closed I release the last reference to the&lt;br&gt;
&amp;gt; RefPtr&amp;lt;GtkBuilder&amp;gt; (Of course I need to make sure that no one else&lt;br&gt;
&amp;gt; also holds a reference to the same GtkBuilder). The GtkBuilder will&lt;br&gt;
&amp;gt; then release the VBox.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;Again, I don&amp;#39;t think that&amp;#39;s true, or that it should be true. Do you have&lt;br&gt;
&lt;div class=&quot;Ih2E3d&quot;&gt;a simple-as-possible compileable test case that shows this?&lt;br&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;I&amp;#39;m currently not at home so I can&amp;#39;t prepare an example but the documentation of the GtkBuilder says:&lt;br&gt;&amp;quot;A GtkBuilder holds a reference to all objects that it has constructed
and drops these references when it is finalized. This finalization can 
cause the destruction of non-widget objects or widgets which are not 
contained in a toplevel window. For toplevel windows constructed by a 
builder, it is the responsibility of the user to call &lt;a href=&quot;http://library.gnome.org/devel/gtk/stable/GtkWidget.html#gtk-widget-destroy&quot; class=&quot;link&quot; title=&quot;gtk_widget_destroy ()&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;code class=&quot;function&quot;&gt;gtk_widget_destroy()&lt;/code&gt;&lt;/a&gt; 
to get rid of them and all the widgets they contain.
&amp;quot;&lt;br&gt;&lt;a href=&quot;http://library.gnome.org/devel/gtk/stable/GtkBuilder.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://library.gnome.org/devel/gtk/stable/GtkBuilder.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That&amp;#39;s for plain Gtk though, the Gtkmm documentation doesn&amp;#39;t say anything about GtkBuilder&amp;#39;s memory management.&lt;br&gt;
&lt;br&gt;But that&amp;#39;s exactly what&amp;#39;s happening in my case since my GtkBuilder files do not contain a toplevel window.&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div class=&quot;Ih2E3d&quot;&gt;&lt;br&gt;
&lt;/div&gt;&lt;div class=&quot;Ih2E3d&quot;&gt;&amp;gt; I first thought that the VBox is released by the notebook but then I&lt;br&gt;
&amp;gt; realized that it&amp;#39;s the GtkBuilder of course.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; It&amp;#39;s all a big hack of course but as I said earlier I didn&amp;#39;t find&lt;br&gt;
&amp;gt; another clever way to replicate widgets that come from a GtkBuilder&lt;br&gt;
&amp;gt; (I&amp;#39;d need something like a clone factory with the GtkBuilder providing&lt;br&gt;
&amp;gt; the examplar objects but as far as I know widgets can&amp;#39;t be copied or&lt;br&gt;
&amp;gt; cloned)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;--&lt;br&gt;
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616736&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.murrayc.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;www.murrayc.com&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.openismus.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;www.openismus.com&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18616736&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtk%3A%3ANotebook-memory-management-quirks-tp18548877p18616736.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18613054</id>
	<title>Re: Gtk::Notebook memory management quirks</title>
	<published>2008-07-23T07:24:13Z</published>
	<updated>2008-07-23T07:24:13Z</updated>
	<author>
		<name>Murray Cumming</name>
	</author>
	<content type="html">On Wed, 2008-07-23 at 12:12 +0200, Julien Langer wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 2008/7/23 Murray Cumming &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18613054&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I don't think that the builder should delete widgets. Do you
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; have a
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; simple-as-possible compileable test case that shows this? If
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; so, could
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; you please add it to bugzilla?
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I load the widgets that are displayed on the notebook tab from a
&lt;br&gt;&amp;gt; GtkBuilder file.
&lt;br&gt;&amp;gt; Multiple tabs can be opened, so I need to create a new GtkBuilder for
&lt;br&gt;&amp;gt; each tab. (I didn't find another way to replicate the widgets created
&lt;br&gt;&amp;gt; by the GtkBuilder).
&lt;br&gt;&amp;gt; Each of these GtkBuilder files has a VBox with the notebook contents
&lt;br&gt;&amp;gt; which is then added to the notebook as the child widget.
&lt;br&gt;&amp;gt; Once the tab is closed I release the last reference to the
&lt;br&gt;&amp;gt; RefPtr&amp;lt;GtkBuilder&amp;gt; (Of course I need to make sure that no one else
&lt;br&gt;&amp;gt; also holds a reference to the same GtkBuilder). The GtkBuilder will
&lt;br&gt;&amp;gt; then release the VBox.
&lt;/div&gt;&lt;br&gt;Again, I don't think that's true, or that it should be true. Do you have
&lt;br&gt;a simple-as-possible compileable test case that shows this?
&lt;br&gt;&lt;br&gt;&amp;gt; I first thought that the VBox is released by the notebook but then I
&lt;br&gt;&amp;gt; realized that it's the GtkBuilder of course.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's all a big hack of course but as I said earlier I didn't find
&lt;br&gt;&amp;gt; another clever way to replicate widgets that come from a GtkBuilder
&lt;br&gt;&amp;gt; (I'd need something like a clone factory with the GtkBuilder providing
&lt;br&gt;&amp;gt; the examplar objects but as far as I know widgets can't be copied or
&lt;br&gt;&amp;gt; cloned)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18613054&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;www.murrayc.com
&lt;br&gt;www.openismus.com
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18613054&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtk%3A%3ANotebook-memory-management-quirks-tp18548877p18613054.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18612799</id>
	<title>Re: New API in GTK+ 2.13/14</title>
	<published>2008-07-23T07:12:40Z</published>
	<updated>2008-07-23T07:12:40Z</updated>
	<author>
		<name>Murray Cumming</name>
	</author>
	<content type="html">On Tue, 2008-07-08 at 11:18 +0200, Murray Cumming wrote:
&lt;br&gt;&amp;gt; It looks like GTK+ 2.14 will be released quite soon. I have not been
&lt;br&gt;&amp;gt; paying enough attention to it, so it would be great if people could take
&lt;br&gt;&amp;gt; a look and try to wrap the new API for gtkmm so we can release gtkmm
&lt;br&gt;&amp;gt; 2.14 soon afer GTK+ 2.14 is released.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://library.gnome.org/devel/gtk/unstable/ix09.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://library.gnome.org/devel/gtk/unstable/ix09.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I think I have wrapped most of the new API, but it would be great if
&lt;br&gt;people could double-check. See the NEWS files for lists of new API for
&lt;br&gt;now.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612799&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;www.murrayc.com
&lt;br&gt;www.openismus.com
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612799&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/New-API-in-GTK%2B-2.13-14-tp18342531p18612799.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18612813</id>
	<title>Gtkmm-forge Digest, Vol 26, Issue 7</title>
	<published>2008-07-23T07:12:19Z</published>
	<updated>2008-07-23T07:12:19Z</updated>
	<author>
		<name>gtkmm-forge-request</name>
	</author>
	<content type="html">Send Gtkmm-forge mailing list submissions to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;To subscribe or unsubscribe via the World Wide Web, visit
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&lt;/a&gt;&lt;br&gt;or, via email, send a message with subject or body 'help' to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge-request@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;You can reach the person managing the list at
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge-owner@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;When replying, please edit your Subject line so it is more specific
&lt;br&gt;than &amp;quot;Re: Contents of Gtkmm-forge digest...&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla. &amp;nbsp;A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs. Do not try to unsubscribe gtkmm-forge from gtkmm-list.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Today's Topics:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;1. [Bug 544135] [PATCH] Include depreated flags in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; gtkmmconfig.in (backport from trunk) (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;2. [Bug 520778] [PATCH] GNode wrapper implementation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;3. [Bug 520778] [PATCH] GNode wrapper implementation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;4. [Bug 520778] [PATCH] GNode wrapper implementation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;5. [Bug 423990] glibmm et al don't recognize new GNU	m4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;6. [Bug 423990] glibmm et al don't recognize new GNU	m4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;7. [Bug 520778] [PATCH] GNode wrapper implementation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;8. [Bug 423990] glibmm et al don't recognize new GNU	m4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Message: 1
&lt;br&gt;Date: Tue, 22 Jul 2008 10:05:58 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 544135] [PATCH] Include depreated flags
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; in	gtkmmconfig.in (backport from trunk)
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080722100558.92CD023F52F@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=544135&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=544135&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | general | Ver: 2.10.x
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #1 from Johannes Schmid &amp;nbsp;2008-07-22 10:05 UTC -------
&lt;br&gt;Created an attachment (id=114993)
&lt;br&gt;&amp;nbsp;--&amp;gt; (&lt;a href=&quot;http://bugzilla.gnome.org/attachment.cgi?id=114993&amp;action=view&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/attachment.cgi?id=114993&amp;action=view&lt;/a&gt;)
&lt;br&gt;Patch to backport the change
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=544135&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=544135&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 2
&lt;br&gt;Date: Tue, 22 Jul 2008 21:32:52 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 520778] [PATCH] GNode wrapper
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; implementation
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080722213252.552A523F518@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | general | Ver: 2.15.x
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #12 from Szilard Pfeiffer &amp;nbsp;2008-07-22 21:32 UTC -------
&lt;br&gt;Created an attachment (id=115050)
&lt;br&gt;&amp;nbsp;--&amp;gt; (&lt;a href=&quot;http://bugzilla.gnome.org/attachment.cgi?id=115050&amp;action=view&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/attachment.cgi?id=115050&amp;action=view&lt;/a&gt;)
&lt;br&gt;suggested changes to the wrapper
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 3
&lt;br&gt;Date: Tue, 22 Jul 2008 21:46:32 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 520778] [PATCH] GNode wrapper
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; implementation
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080722214632.4AB6E23F505@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | general | Ver: 2.15.x
&lt;br&gt;&lt;br&gt;Szilard Pfeiffer changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CC| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;szilard.pfeiffer@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #13 from Szilard Pfeiffer &amp;nbsp;2008-07-22 21:46 UTC -------
&lt;br&gt;I would like to suggest some changes in the implementation of the wrapper
&lt;br&gt;(comment 12). I can see the following benefits:
&lt;br&gt;&lt;br&gt;1; Glib::Node class would be closer to the original GNode structure, so it
&lt;br&gt;would be simpler
&lt;br&gt;2; Foreach or traverse slots should use the tree node instead of the node's
&lt;br&gt;data only
&lt;br&gt;3; Data would be compared by the operator == of class T instead of pointer
&lt;br&gt;comparison in case of find functions
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 4
&lt;br&gt;Date: Wed, 23 Jul 2008 07:17:15 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 520778] [PATCH] GNode wrapper
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; implementation
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=14&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080723071716.8E66523F58D@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | general | Ver: 2.15.x
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #14 from Murray Cumming &amp;nbsp;2008-07-23 07:17 UTC -------
&lt;br&gt;(In reply to comment #13)
&lt;br&gt;&amp;gt; I would like to suggest some changes in the implementation of the wrapper
&lt;br&gt;&amp;gt; (comment 12). I can see the following benefits:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1; Glib::Node
&lt;br&gt;&lt;br&gt;You mean Glib::Tree, I guess.
&lt;br&gt;&lt;br&gt;&amp;gt; class would be closer to the original GNode structure, so it
&lt;br&gt;&amp;gt; would be simpler
&lt;br&gt;&amp;gt; 2; Foreach or traverse slots should use the tree node instead of the node's
&lt;br&gt;&amp;gt; data only
&lt;br&gt;&lt;br&gt;What would be the advantage of this?
&lt;br&gt;&lt;br&gt;&amp;gt; 3; Data would be compared by the operator == of class T instead of pointer
&lt;br&gt;&amp;gt; comparison in case of find functions
&lt;br&gt;&lt;br&gt;The patch seems to have lots of unrelated changes, which makes it difficult to
&lt;br&gt;review.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 5
&lt;br&gt;Date: Wed, 23 Jul 2008 07:50:25 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=16&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 423990] glibmm et al don't recognize
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new GNU	m4
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=17&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=18&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080723075025.8467A23F545@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | build | Ver: unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #9 from Murray Cumming &amp;nbsp;2008-07-23 07:50 UTC -------
&lt;br&gt;Could you submit an actual patch, please, ideally against svn, with a ChangeLog
&lt;br&gt;entry.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 6
&lt;br&gt;Date: Wed, 23 Jul 2008 09:05:25 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=19&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 423990] glibmm et al don't recognize
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new GNU	m4
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=20&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=21&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080723090525.1557423F591@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | build | Ver: unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #10 from Damien Carbery &amp;nbsp;2008-07-23 09:05 UTC -------
&lt;br&gt;Created an attachment (id=115083)
&lt;br&gt;&amp;nbsp;--&amp;gt; (&lt;a href=&quot;http://bugzilla.gnome.org/attachment.cgi?id=115083&amp;action=view&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/attachment.cgi?id=115083&amp;action=view&lt;/a&gt;)
&lt;br&gt;Use grep -i to check for GNU m4. Include ChangeLog entry.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 7
&lt;br&gt;Date: Wed, 23 Jul 2008 12:51:04 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=22&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 520778] [PATCH] GNode wrapper
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; implementation
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=23&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=24&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080723125104.09AC823F522@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | general | Ver: 2.15.x
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #15 from Levi Bard &amp;nbsp;2008-07-23 12:51 UTC -------
&lt;br&gt;(In reply to comment #13)
&lt;br&gt;&amp;gt; 1; Glib::Node class would be closer to the original GNode structure, so it
&lt;br&gt;&amp;gt; would be simpler
&lt;br&gt;&lt;br&gt;Are you suggesting renaming Tree to Node?
&lt;br&gt;&lt;br&gt;&amp;gt; 3; Data would be compared by the operator == of class T instead of pointer
&lt;br&gt;&amp;gt; comparison in case of find functions
&lt;br&gt;&lt;br&gt;Data is already compared using the == operator.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=520778&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=520778&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 8
&lt;br&gt;Date: Wed, 23 Jul 2008 13:12:09 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=25&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 423990] glibmm et al don't recognize
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new GNU	m4
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=26&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080723131209.3F7B723F543@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | build | Ver: unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #11 from Murray Cumming &amp;nbsp;2008-07-23 13:12 UTC -------
&lt;br&gt;Committed to svn trunk. Thanks.
&lt;br&gt;&lt;br&gt;I guess we will see if it stops working for anyone.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gtkmm-forge mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=28&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;End of Gtkmm-forge Digest, Vol 26, Issue 7
&lt;br&gt;******************************************
&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612813&amp;i=29&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtkmm-forge-Digest%2C-Vol-26%2C-Issue-7-tp18612813p18612813.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18612507</id>
	<title>ANNOUNCE: gtkmm 2.13.5</title>
	<published>2008-07-23T06:58:12Z</published>
	<updated>2008-07-23T06:58:12Z</updated>
	<author>
		<name>Murray Cumming</name>
	</author>
	<content type="html">*** gtkmm 2.14:
&lt;br&gt;&lt;br&gt;gtkmm 2.13 wraps new API in GTK+ 2.13. It will become the API/ABI-stable 
&lt;br&gt;gtkmm 2.14 when GTK+ 2.14.0 is released. gtkmm 2.13 is API/ABI-compatibile with 
&lt;br&gt;gtkmm 2.12, 2.10, 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API.
&lt;br&gt;&lt;br&gt;gtkmm stays in-sync with GTK+ by following the official GNOME release schedule:
&lt;br&gt;&lt;a href=&quot;http://www.gnome.org/start/unstable/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnome.org/start/unstable/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Bindings for the rest of the GNOME Platform are also available, and are also 
&lt;br&gt;API-stable.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.gtkmm.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gtkmm.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;*** Changes
&lt;br&gt;&lt;br&gt;gtkmm 2.13.5 (unstable):
&lt;br&gt;&lt;br&gt;Gtk:
&lt;br&gt;* Builder: Added versions of create_from_file(), 
&lt;br&gt;&amp;nbsp; create_from_string(), add_from_file(), and add_from_string() 
&lt;br&gt;&amp;nbsp; that take an ID or array of IDs, to allow building of only a part of 
&lt;br&gt;&amp;nbsp; the file, as was already possible with libglade.
&lt;br&gt;* CellRendererCombo: Wrapped the changed signal.
&lt;br&gt;&amp;nbsp; (Murray Cumming)
&lt;br&gt;* FileChooser: get_preview_widget(): Avoid an endless loop.
&lt;br&gt;&amp;nbsp; Bug #543288 (Jens Georg)
&lt;br&gt;* Printer: Added is_paused() and is_accepting_jobs().
&lt;br&gt;&amp;nbsp; (Murray Cumming)
&lt;br&gt;&lt;br&gt;Build:
&lt;br&gt;* pangomm is now in its own tarball.
&lt;br&gt;&amp;nbsp; (Murray Cumming)
&lt;br&gt;* MSVC_Net2003 project files: Mention new source files 
&lt;br&gt;&amp;nbsp; for builder, scalebutton, tooltip, and volumebutton.
&lt;br&gt;&amp;nbsp; (Jens Georg) Bug #543294.
&lt;br&gt;&lt;br&gt;&lt;br&gt;*** Development 
&lt;br&gt;&lt;br&gt;There is active discussion on the mailing list: 
&lt;br&gt;&lt;a href=&quot;http://www.gtkmm.org/mailinglist.shtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gtkmm.org/mailinglist.shtml&lt;/a&gt;&lt;br&gt;and in the #c++ channel on irc.gnome.org
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Murray Cumming
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612507&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;www.murrayc.com
&lt;br&gt;www.openismus.com
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18612507&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/ANNOUNCE%3A-gtkmm-2.13.5-tp18612507p18612507.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18611086</id>
	<title>Treeview_foregroundcolor_for_specificrows</title>
	<published>2008-07-23T05:36:16Z</published>
	<updated>2008-07-23T05:36:16Z</updated>
	<author>
		<name>SaiKamesh Rathinasabapathy</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Hi,&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div dir=&quot;ltr&quot;&gt;&lt;br&gt;I need to display some records in a Gtk::TreeView. The foreground color of some specific rows in the tree view has to be shown in red color . Could anyone give me some ideas on how this can be done?&lt;br&gt;

&lt;br&gt;Thanks In Advance,&lt;br&gt;Saikamesh&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18611086&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Treeview_foregroundcolor_for_specificrows-tp18607413p18611086.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18611705</id>
	<title>Re: Gtk::Notebook memory management quirks</title>
	<published>2008-07-23T03:12:37Z</published>
	<updated>2008-07-23T03:12:37Z</updated>
	<author>
		<name>Julien Langer-2</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;2008/7/23 Murray Cumming &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18611705&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;:&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;br&gt;
I don&amp;#39;t think that the builder should delete widgets. Do you have a&lt;br&gt;
simple-as-possible compileable test case that shows this? If so, could&lt;br&gt;
you please add it to bugzilla?&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;I load the widgets that are displayed on the notebook tab from a GtkBuilder file.&lt;br&gt;Multiple tabs can be opened, so I need to create a new GtkBuilder for each tab. (I didn&amp;#39;t find another way to replicate the widgets created by the GtkBuilder).&lt;br&gt;
Each of these GtkBuilder files has a VBox with the notebook contents which is then added to the notebook as the child widget.&lt;br&gt;Once the tab is closed I release the last reference to the RefPtr&amp;lt;GtkBuilder&amp;gt; (Of course I need to make sure that no one else also holds a reference to the same GtkBuilder). The GtkBuilder will then release the VBox.&lt;br&gt;
I first thought that the VBox is released by the notebook but then I realized that it&amp;#39;s the GtkBuilder of course.&lt;br&gt;&lt;br&gt;It&amp;#39;s all a big hack of course but as I said earlier I didn&amp;#39;t find another clever way to replicate widgets that come from a GtkBuilder (I&amp;#39;d need something like a clone factory with the GtkBuilder providing the examplar objects but as far as I know widgets can&amp;#39;t be copied or cloned)&lt;br&gt;
&lt;br&gt;-Julien&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18611705&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtk%3A%3ANotebook-memory-management-quirks-tp18548877p18611705.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18608030</id>
	<title>Re: Gtk::Notebook memory management quirks</title>
	<published>2008-07-23T02:46:07Z</published>
	<updated>2008-07-23T02:46:07Z</updated>
	<author>
		<name>Murray Cumming</name>
	</author>
	<content type="html">On Sun, 2008-07-20 at 01:33 +0200, Julien Langer wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sa, 2008-07-19 at 02:10 +0200, Julien Langer wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; About this function:
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.gtkmm.org/docs/gtkmm-2.4/docs/reference/html/classGtk_1_1Notebook.html#f7bdf8ec9f703fb21aec6d372085f38a&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gtkmm.org/docs/gtkmm-2.4/docs/reference/html/classGtk_1_1Notebook.html#f7bdf8ec9f703fb21aec6d372085f38a&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I noticed that the tab label does not get deleted automatically when
&lt;br&gt;&amp;gt; &amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; page is removed via remove_page (the child widget is properly removed
&lt;br&gt;&amp;gt; &amp;gt; though).
&lt;br&gt;&amp;gt; &amp;gt; Is this the intended behaviour?
&lt;/div&gt;&lt;br&gt;Yes. Why should a widget be deleted just because you remove it from a
&lt;br&gt;container?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp;It seems a bit strange to me and it
&lt;br&gt;&amp;gt; &amp;gt; also
&lt;br&gt;&amp;gt; &amp;gt; doesn't seem to be documented (at least I didn't find anything about
&lt;br&gt;&amp;gt; &amp;gt; it)
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; -Julien
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Well it looks like I was wrong about this.
&lt;br&gt;&amp;gt; It was actually the GtkBuilder who deleted my child widgets, not the
&lt;br&gt;&amp;gt; notebook itself.
&lt;/div&gt;&lt;br&gt;I don't think that the builder should delete widgets. Do you have a
&lt;br&gt;simple-as-possible compileable test case that shows this? If so, could
&lt;br&gt;you please add it to bugzilla?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18608030&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;www.murrayc.com
&lt;br&gt;www.openismus.com
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18608030&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtk%3A%3ANotebook-memory-management-quirks-tp18548877p18608030.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18607413</id>
	<title>Treeview_foregroundcolor_for_specificrows</title>
	<published>2008-07-23T02:09:23Z</published>
	<updated>2008-07-23T02:09:23Z</updated>
	<author>
		<name>SaiKamesh Rathinasabapathy</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Hi,&lt;br&gt;&lt;br&gt;I need to display some records in a Gtk::TreeView. The foreground color of some specific rows in the tree view has to be shown in red color . Could anyone give me some ideas on how this can be done?&lt;br&gt;
&lt;br&gt;Thanks In Advance,&lt;br&gt;Saikamesh&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18607413&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Treeview_foregroundcolor_for_specificrows-tp18607413p18607413.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18604428</id>
	<title>Re: [gst-devel] Gstreamer with C++</title>
	<published>2008-07-22T22:59:00Z</published>
	<updated>2008-07-22T22:59:00Z</updated>
	<author>
		<name>José Alburquerque-3</name>
	</author>
	<content type="html">José Alburquerque wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Eric Jonas wrote:
&lt;br&gt;&amp;gt;&amp;gt; [continuing on &amp;nbsp;gtkmm-list] Do you anticipate it being possible to 
&lt;br&gt;&amp;gt;&amp;gt; use elements written in c++ from
&lt;br&gt;&amp;gt;&amp;gt; gstreamer pipelines in other languages (C, python, etc) ? I imagine the
&lt;br&gt;&amp;gt;&amp;gt; dealing with the complexity of C++ name mangling, lifecycle complexity,
&lt;br&gt;&amp;gt;&amp;gt; and ABI would make this difficult. &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yes I think this is right; I don't think it's possible to write 
&lt;br&gt;&amp;gt; GStreamer plugins in c++. &amp;nbsp;The GstPlugin 
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html&lt;/a&gt;&amp;gt; 
&lt;br&gt;&amp;gt; API explains (in the description) that a GstPluginDesc 
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html#GstPluginDesc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html#GstPluginDesc&lt;/a&gt;&amp;gt; 
&lt;br&gt;&amp;gt; called &amp;quot;gst_plugin_desc&amp;quot; must be exported by the developer and then 
&lt;br&gt;&amp;gt; write the necessary plugin code. &amp;nbsp;We would have to find a way to use a 
&lt;br&gt;&amp;gt; slot in the GstPluginDesc for the GstPluginInitFunc 
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html#GstPluginInitFunc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html#GstPluginInitFunc&lt;/a&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (a pointer to a plugin init function) and I'm not sure how we would go 
&lt;br&gt;&amp;gt; about this (partly because to start with we would need for the 
&lt;br&gt;&amp;gt; GstPluginInitFunc type to have an additional gpointer* parameter). &amp;nbsp;
&lt;br&gt;&amp;gt; Also, as you say, the gstreamermm library initialization and lifecycle 
&lt;br&gt;&amp;gt; of objects is something that we would most probably have to pay 
&lt;br&gt;&amp;gt; attention to. &amp;nbsp;I've been thinking about all this a bit since you 
&lt;br&gt;&amp;gt; asked, and presently this doesn't seem possible, though I may think 
&lt;br&gt;&amp;gt; about it a bit more and make a definite determination later (God 
&lt;br&gt;&amp;gt; willing). &amp;nbsp;Right now, I'd suggest not to plan on writing c++ plugins 
&lt;br&gt;&amp;gt; until this is made definite. &amp;nbsp;Does this help?
&lt;br&gt;&amp;gt;
&lt;/div&gt;I need to refine this answer:
&lt;br&gt;&lt;br&gt;There are two ways to register new GStreamer plugins: &amp;nbsp;1) The way I 
&lt;br&gt;described above which to me looks more and more less likely to be 
&lt;br&gt;possible with gstreamermm and 2) registering a plugin specific to an 
&lt;br&gt;application &amp;quot;statically&amp;quot; (which means that the plugin is not &amp;quot;shipped as 
&lt;br&gt;a separate module file&amp;quot; according to the GstPlugin docs). &amp;nbsp;In the C API, 
&lt;br&gt;the gst_plugin_register_static() 
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html#gst-plugin-register-static&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstPlugin.html#gst-plugin-register-static&lt;/a&gt;&amp;gt; 
&lt;br&gt;function is used to register plugin elements that have been written in 
&lt;br&gt;an application. &amp;nbsp;These plugins are available outside the application to 
&lt;br&gt;others (I think regardless of which language they employ to use the 
&lt;br&gt;plugin) as long as the application is &amp;quot;active&amp;quot; (I would think). &amp;nbsp;If this 
&lt;br&gt;gst_plugin_register_static() function can be successfully wrapped in 
&lt;br&gt;gstreamerrmm I think what you're asking about may be possible in this 
&lt;br&gt;way. &amp;nbsp;I'll be working on wrapping this function and we should know 
&lt;br&gt;fairly quickly (a release or two) if this can become a possibility with 
&lt;br&gt;gstreamermm.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;José Alburquerque
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18604428&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Re%3A--gst-devel--Gstreamer-with-C%2B%2B-tp18537097p18604428.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18599240</id>
	<title>Re: building giomm on win32</title>
	<published>2008-07-22T14:30:17Z</published>
	<updated>2008-07-22T14:30:17Z</updated>
	<author>
		<name>blair_boost</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:times new roman, new york, times, serif;font-size:12pt&quot;&gt;&lt;div&gt;My mistake. My giomm.vcproj had those files.&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;br&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;----- Original Message ----&lt;br&gt;From: john blair &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18599240&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mailtome200420032002@...&lt;/a&gt;&amp;gt;&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18599240&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;&lt;br&gt;Sent: Tuesday, July 22, 2008 1:51:35 PM&lt;br&gt;Subject: building giomm on win32&lt;br&gt;&lt;br&gt;
&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;div&gt;I am trying to build giomm from glibmm-2.16.4 on win32 and getting the same error described here:&lt;br&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=524126&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=524126&lt;/a&gt;&lt;br&gt;&lt;br&gt;Does somebody has a patch to resolve this?&lt;/div&gt;&lt;/div&gt;&lt;br&gt;

      &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;

      &lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18599240&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/building-giomm-on-win32-tp18598607p18599240.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18598607</id>
	<title>building giomm on win32</title>
	<published>2008-07-22T13:51:35Z</published>
	<updated>2008-07-22T13:51:35Z</updated>
	<author>
		<name>blair_boost</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:times new roman, new york, times, serif;font-size:12pt&quot;&gt;&lt;div&gt;I am trying to build giomm from glibmm-2.16.4 on win32 and getting the same error described here:&lt;br&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=524126&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;yshortcuts&quot; id=&quot;lw_1216759751_0&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=524126&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Does somebody has a patch to resolve this?&lt;/div&gt;&lt;/div&gt;&lt;br&gt;

      &lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18598607&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/building-giomm-on-win32-tp18598607p18598607.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18594625</id>
	<title>Re: Glibmm:Threads</title>
	<published>2008-07-22T10:27:40Z</published>
	<updated>2008-07-22T10:27:40Z</updated>
	<author>
		<name>José Alburquerque-3</name>
	</author>
	<content type="html">Toby Roworth wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm currently writing a program that decodes video and displays it 
&lt;br&gt;&amp;gt; onto a secondary screen using OpenGl, with a GTKmm GUI on the first 
&lt;br&gt;&amp;gt; screen. However the video decoding is quite processor intensive, and 
&lt;br&gt;&amp;gt; maxes out one of my processors, without the other getting a look in. 
&lt;br&gt;&amp;gt; This prevents the GUI from operating whilst video is decoding.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have attempted to solve this by putting the decoding loop inside a 
&lt;br&gt;&amp;gt; Glibmm::Thread, but this does not seem to have any effect - is this 
&lt;br&gt;&amp;gt; likely to be because I'm using the wrong tool for the job, misusing 
&lt;br&gt;&amp;gt; the right tool or something else.
&lt;/div&gt;&lt;br&gt;By what I've read on this list, you're problem may be related to gtkmm 
&lt;br&gt;event handling and threads. &amp;nbsp;You may want to search the list 
&lt;br&gt;(&lt;a href=&quot;http://marc.info/?l=gtkmm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://marc.info/?l=gtkmm&lt;/a&gt;) for something along these lines. &amp;nbsp;I'd 
&lt;br&gt;encourage you to try gstreamermm, but it may not be stable enough for 
&lt;br&gt;general usage yet, though it does have a media player example that uses 
&lt;br&gt;gtkmm.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;José Alburquerque
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18594625&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Glibmm%3AThreads-tp18590793p18594625.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18590793</id>
	<title>Glibmm:Threads</title>
	<published>2008-07-22T07:19:26Z</published>
	<updated>2008-07-22T07:19:26Z</updated>
	<author>
		<name>Toby Roworth</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;I'm currently writing a program that decodes video and displays it onto 
&lt;br&gt;a secondary screen using OpenGl, with a GTKmm GUI on the first screen. 
&lt;br&gt;However the video decoding is quite processor intensive, and maxes out 
&lt;br&gt;one of my processors, without the other getting a look in. This prevents 
&lt;br&gt;the GUI from operating whilst video is decoding.
&lt;br&gt;&lt;br&gt;I have attempted to solve this by putting the decoding loop inside a 
&lt;br&gt;Glibmm::Thread, but this does not seem to have any effect - is this 
&lt;br&gt;likely to be because I'm using the wrong tool for the job, misusing the 
&lt;br&gt;right tool or something else.
&lt;br&gt;&lt;br&gt;Any help appreciated
&lt;br&gt;&lt;br&gt;Toby
&lt;br&gt;-- 
&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;Sent by Toby Roworth (&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18590793&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;webmaster@...&lt;/a&gt;)
&lt;br&gt;This message is intended for the named reciepients only, and should not 
&lt;br&gt;be forwarded without permission
&lt;br&gt;The conents of this message may be ©Toby Roworth
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18590793&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Glibmm%3AThreads-tp18590793p18590793.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18587111</id>
	<title>Scribble with rubber</title>
	<published>2008-07-22T04:10:59Z</published>
	<updated>2008-07-22T04:10:59Z</updated>
	<author>
		<name>Slivietta</name>
	</author>
	<content type="html">Hi..
&lt;br&gt;I have created a window that scribble on one image..
&lt;br&gt;Now i want have the possibility of rubber that have scribbled..use spin botton that escludes one by one..when i use the pen..i don't can use tha rubber..and conversely
&lt;br&gt;Someone have some code..idea..?
&lt;br&gt;This is..my code..
&lt;br&gt;there is also the event box..that capture the coord of the point that scribble..
&lt;br&gt;thanks in advance..
&lt;br&gt;;)
&lt;br&gt;&lt;br&gt;#include &amp;lt;gtkmm.h&amp;gt;
&lt;br&gt;#include &amp;lt;iostream&amp;gt;
&lt;br&gt;#include &amp;lt;gdkmm/cursor.h&amp;gt;
&lt;br&gt;&lt;br&gt;class Example_DrawingArea : public Gtk::Window
&lt;br&gt;{
&lt;br&gt;public:
&lt;br&gt;&amp;nbsp; Example_DrawingArea();
&lt;br&gt;&amp;nbsp; virtual ~Example_DrawingArea();
&lt;br&gt;&lt;br&gt;protected:
&lt;br&gt;//signal handlers:
&lt;br&gt;&amp;nbsp; bool on_drawingarea_scribble_expose_event(GdkEventExpose* event);
&lt;br&gt;&amp;nbsp; bool on_drawingarea_scribble_configure_event(GdkEventConfigure* event);
&lt;br&gt;&amp;nbsp; bool on_drawingarea_scribble_motion_notify_event(GdkEventMotion* event);
&lt;br&gt;&amp;nbsp; bool on_drawingarea_scribble_button_press_event(GdkEventButton* event);
&lt;br&gt;&lt;br&gt;&amp;nbsp; void scribble_draw_brush(int x, int y);
&lt;br&gt;&lt;br&gt;&amp;nbsp; //Member widgets:
&lt;br&gt;&amp;nbsp; Gtk::Frame m_Frame_Scribble;
&lt;br&gt;&amp;nbsp; Gtk::VBox m_VBox;
&lt;br&gt;&amp;nbsp; Gtk::Label &amp;nbsp;m_Label_Scribble;
&lt;br&gt;&amp;nbsp; Gtk::DrawingArea m_DrawingArea_Scribble;
&lt;br&gt;&amp;nbsp; Glib::RefPtr&amp;lt;Gdk::Pixmap&amp;gt; m_refPixmap_Scribble;
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;&lt;br&gt;Example_DrawingArea::Example_DrawingArea()
&lt;br&gt;:
&lt;br&gt;&amp;nbsp; m_VBox(false, 8)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; set_title(&amp;quot;Drawing Area&amp;quot;);
&lt;br&gt;&amp;nbsp; set_border_width(8);
&lt;br&gt;&lt;br&gt;&amp;nbsp; m_VBox.set_border_width(8);
&lt;br&gt;&amp;nbsp; add(m_VBox);
&lt;br&gt;&lt;br&gt;/* &amp;nbsp;Create the scribble area */
&lt;br&gt;&lt;br&gt;&amp;nbsp; m_Label_Scribble.set_markup(&amp;quot;&amp;lt;u&amp;gt;Scribble area&amp;lt;/u&amp;gt;&amp;quot;);
&lt;br&gt;&amp;nbsp; m_VBox.pack_start(m_Label_Scribble, Gtk::PACK_SHRINK);
&lt;br&gt;&lt;br&gt;&amp;nbsp; m_Frame_Scribble.set_shadow_type(Gtk::SHADOW_IN);
&lt;br&gt;&amp;nbsp; m_VBox.pack_start(m_Frame_Scribble);
&lt;br&gt;&lt;br&gt;&amp;nbsp; /* set a minimum size */
&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.set_size_request(200, 200);
&lt;br&gt;&amp;nbsp; m_Frame_Scribble.add(m_DrawingArea_Scribble);
&lt;br&gt;&lt;br&gt;&amp;nbsp; /* Signals used to handle backing pixmap */
&lt;br&gt;&amp;nbsp;m_DrawingArea_Scribble.signal_expose_event().connect(
&lt;br&gt;&amp;nbsp; &amp;nbsp;sigc::mem_fun(*this, &amp;Example_DrawingArea::on_drawingarea_scribble_expose_event));
&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.signal_configure_event().connect(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; sigc::mem_fun(*this, &amp;Example_DrawingArea::on_drawingarea_scribble_configure_event));
&lt;br&gt;&lt;br&gt;&amp;nbsp; /* Event signals */
&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.signal_motion_notify_event().connect(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; sigc::mem_fun(*this, &amp;Example_DrawingArea::on_drawingarea_scribble_motion_notify_event));
&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.signal_button_press_event().connect(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; sigc::mem_fun(*this, &amp;Example_DrawingArea::on_drawingarea_scribble_button_press_event));
&lt;br&gt;&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.add_events(Gdk::LEAVE_NOTIFY_MASK |
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Gdk::BUTTON_PRESS_MASK |
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Gdk::POINTER_MOTION_MASK |
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Gdk::POINTER_MOTION_HINT_MASK);
&lt;br&gt;&amp;nbsp; show_all();
&lt;br&gt;}
&lt;br&gt;Example_DrawingArea::~Example_DrawingArea()
&lt;br&gt;{
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;bool Example_DrawingArea::on_drawingarea_scribble_expose_event(GdkEventExpose* event)
&lt;br&gt;{
&lt;br&gt;&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.get_window()-&amp;gt;draw_drawable(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_DrawingArea_Scribble.get_style()-&amp;gt;get_fg_gc(m_DrawingArea_Scribble.get_state()),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; m_refPixmap_Scribble,
&lt;br&gt;// &amp;nbsp; &amp;nbsp; &amp;nbsp;Only copy the area that was exposed:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; event-&amp;gt;area.x, event-&amp;gt;area.y,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; event-&amp;gt;area.x, event-&amp;gt;area.y,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; event-&amp;gt;area.width, event-&amp;gt;area.height);
&lt;br&gt;&lt;br&gt;&amp;nbsp; return false;
&lt;br&gt;}
&lt;br&gt;bool Example_DrawingArea::on_drawingarea_scribble_configure_event(GdkEventConfigure*)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;m_refPixmap_Scribble =
&lt;br&gt;Gdk::Pixmap::create_from_xpm(m_DrawingArea_Scribble.get_window(),get_default_style()-&amp;gt;get_bg(Gtk::STATE_NORMAL),&amp;quot;/home/silvia/Scrivania/Senza nome.xpm&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; return true;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;bool Example_DrawingArea::on_drawingarea_scribble_motion_notify_event(GdkEventMotion* event)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; if(!m_refPixmap_Scribble)
&lt;br&gt;&amp;nbsp; &amp;nbsp; return false; // paranoia check, in case we haven't gotten a configure event
&lt;br&gt;&lt;br&gt;&amp;nbsp; if(event &amp;&amp; event-&amp;gt;window)
&lt;br&gt;&amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; const Glib::RefPtr&amp;lt;Gdk::Window&amp;gt; refWindow =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Glib::wrap((GdkWindowObject*) event-&amp;gt;window, true); // true == take_copy
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; if(refWindow)
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; int x = 0, y = 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Gdk::ModifierType state = Gdk::ModifierType(0);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; refWindow-&amp;gt;get_pointer(x, y, state);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if((state &amp; Gdk::BUTTON1_MASK) != 0)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; scribble_draw_brush(x, y);
&lt;br&gt;std::cout&amp;lt;&amp;lt;&amp;quot;coord:&amp;quot; &amp;lt;&amp;lt; event-&amp;gt;x &amp;lt;&amp;lt; &amp;quot;...&amp;quot; &amp;lt;&amp;lt; event-&amp;gt;y &amp;lt;&amp;lt; std::endl;
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; return true;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;bool Example_DrawingArea::on_drawingarea_scribble_button_press_event(GdkEventButton* event)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; if(!m_refPixmap_Scribble)
&lt;br&gt;&amp;nbsp; &amp;nbsp; return false; // paranoia check, in case we haven't gotten a configure event
&lt;br&gt;&lt;br&gt;&amp;nbsp; if(event-&amp;gt;button == 1)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; scribble_draw_brush(int(event-&amp;gt;x), int(event-&amp;gt;y));
&lt;br&gt;// &amp;nbsp; &amp;nbsp;std::cout&amp;lt;&amp;lt;&amp;quot;coord:&amp;quot; &amp;lt;&amp;lt; event-&amp;gt;x &amp;lt;&amp;lt; &amp;quot;...&amp;quot; &amp;lt;&amp;lt; event-&amp;gt;y &amp;lt;&amp;lt; std::endl;
&lt;br&gt;}
&lt;br&gt;&amp;nbsp;return true;
&lt;br&gt;}
&lt;br&gt;/* Draw a rectangle on the screen.
&lt;br&gt;&amp;nbsp;*/
&lt;br&gt;void Example_DrawingArea::scribble_draw_brush(int x, int y)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; const Gdk::Rectangle update_rect (x - 3, y - 3, 6, 6);
&lt;br&gt;&lt;br&gt;&amp;nbsp; // Paint to the pixmap, where we store our state.
&lt;br&gt;&amp;nbsp; //
&lt;br&gt;&amp;nbsp; m_refPixmap_Scribble-&amp;gt;draw_rectangle(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; m_DrawingArea_Scribble.get_style()-&amp;gt;get_black_gc(),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; update_rect.get_x(), update_rect.get_y(),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; update_rect.get_width(), update_rect.get_height());
&lt;br&gt;&lt;br&gt;&amp;nbsp; // Now invalidate the affected region of the drawing area.
&lt;br&gt;&amp;nbsp; m_DrawingArea_Scribble.get_window()-&amp;gt;invalidate_rect(update_rect, false);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;int main (int argc, char *argv[])
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; Gtk::Main kit(argc, argv);
&lt;br&gt;&amp;nbsp; Example_DrawingArea DemoWindow;
&lt;br&gt;&amp;nbsp; Gtk::Main::run(DemoWindow);
&lt;br&gt;&amp;nbsp; return 0;
&lt;br&gt;}
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Scribble-with-rubber-tp18587111p18587111.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18586429</id>
	<title>Gtkmm-forge Digest, Vol 26, Issue 6</title>
	<published>2008-07-22T03:17:54Z</published>
	<updated>2008-07-22T03:17:54Z</updated>
	<author>
		<name>gtkmm-forge-request</name>
	</author>
	<content type="html">Send Gtkmm-forge mailing list submissions to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;To subscribe or unsubscribe via the World Wide Web, visit
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&lt;/a&gt;&lt;br&gt;or, via email, send a message with subject or body 'help' to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge-request@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;You can reach the person managing the list at
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge-owner@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;When replying, please edit your Subject line so it is more specific
&lt;br&gt;than &amp;quot;Re: Contents of Gtkmm-forge digest...&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla. &amp;nbsp;A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs. Do not try to unsubscribe gtkmm-forge from gtkmm-list.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Today's Topics:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;1. [Bug 543294] vcproj file is missing source files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;2. [Bug 543288] infinite recursion on
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Gtk::FileChooser::get_preview_widget (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;3. [Bug 543292] vcproj file is missing four source	files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;4. [Bug 543671] New:	Notebook::PageList::const_iterator
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; operator!= does not work	(with gcc 4.3.1) (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;5. [Bug 543671] Notebook::PageList::const_iterator	operator!=
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; does not work (with gcc 4.3.1) (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;6. [Bug 543772] New: Unable to load from glade using	gtkmm in MS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Visual Studio 2008 (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;7. [Bug 423990] glibmm et al don't recognize new GNU	m4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (glibmm (bugzilla.gnome.org))
&lt;br&gt;&amp;nbsp; &amp;nbsp;8. [Bug 544135] New: [PATCH] Include depreated flags	in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; gtkmmconfig.in (backport from trunk) (gtkmm (bugzilla.gnome.org))
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Message: 1
&lt;br&gt;Date: Wed, 16 Jul 2008 15:49:24 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 543294] vcproj file is missing source
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; files
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080716154924.4E1FF23F58E@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543294&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543294&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | build | Ver: 2.13.x
&lt;br&gt;&lt;br&gt;Murray Cumming changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CC| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Status|UNCONFIRMED &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |RESOLVED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Resolution| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|FIXED
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #2 from Murray Cumming &amp;nbsp;2008-07-16 15:49 UTC -------
&lt;br&gt;Committed. Thanks.
&lt;br&gt;&lt;br&gt;2008-07-16 &amp;nbsp;Jens Georg &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mail@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * MSVC_Net2003/gtkmm/gtkmm.vcproj: Mention new source files 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for builder, scalebutton, tooltip, and volumebutton.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bug #543294.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543294&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543294&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 2
&lt;br&gt;Date: Wed, 16 Jul 2008 15:56:07 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 543288] infinite recursion on
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Gtk::FileChooser::get_preview_widget
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080716155607.66A5823F58E@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543288&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543288&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | general | Ver: 2.13.x
&lt;br&gt;&lt;br&gt;Murray Cumming changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CC| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Status|UNCONFIRMED &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |RESOLVED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Resolution| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|FIXED
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #1 from Murray Cumming &amp;nbsp;2008-07-16 15:56 UTC -------
&lt;br&gt;Very strange. Fixed (but not generally in gmmproc) in svn trunk and the
&lt;br&gt;gtkmm-2-12 branch:
&lt;br&gt;&lt;br&gt;2008-07-16 &amp;nbsp;Murray Cumming &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * gtk/src/filechooser.hg: get_preview_widget(): Move the const 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overload after the non-const one, because gmmproc otherwise seems to 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; make both just calls to the non-const one. We really need to stop 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gmmproc from doing that, first figuring out why.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Luckily, I don't think we put them in this order very often.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bug #543288 (Jens Georg) 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543288&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543288&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 3
&lt;br&gt;Date: Wed, 16 Jul 2008 15:47:04 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 543292] vcproj file is missing four
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; source	files
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=14&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080716154704.F023723F58E@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543292&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543292&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | build | Ver: 2.17.x
&lt;br&gt;&lt;br&gt;Murray Cumming changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CC| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=16&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Status|UNCONFIRMED &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |RESOLVED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Resolution| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|FIXED
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #2 from Murray Cumming &amp;nbsp;2008-07-16 15:47 UTC -------
&lt;br&gt;Committed. Thanks. Please patch the ChangeLog in future:
&lt;br&gt;&lt;br&gt;2008-07-16 &amp;nbsp;Jens Georg &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=17&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mail@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * MSVC_Net2003/glibmm/glibmm.vcproj: Mention new source files 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for regex and keyfile.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bug #543292.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543292&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543292&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 4
&lt;br&gt;Date: Fri, 18 Jul 2008 23:29:43 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=18&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 543671] New:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Notebook::PageList::const_iterator operator!= does not work	(with gcc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4.3.1)
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=19&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=20&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-543671-5595@...&lt;/a&gt;/&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543671&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543671&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | general | Ver: 2.12.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Notebook::PageList::const_iterator operator!= does not
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; work (with gcc 4.3.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Product: gtkmm
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version: 2.12.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Platform: Other
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OS/Version: Linux
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: UNCONFIRMED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: minor
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component: general
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AssignedTo: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=21&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ReportedBy: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=22&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;julien.langer@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QAContact: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=23&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;GNOME version: 2.21/2.22
&lt;br&gt;&amp;nbsp; &amp;nbsp;GNOME milestone: Unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;The following code does not work with gtkmm 2.12.7 and gcc 4.3.1
&lt;br&gt;&lt;br&gt;const Notebook::PageList&amp; list = notebook-&amp;gt;pages();
&lt;br&gt;Notebook::PageList::const_iterator it = list.begin();
&lt;br&gt;for ( ; it != list.end(); ++it ) { ... }
&lt;br&gt;&lt;br&gt;Compilation fails on containers.h:340
&lt;br&gt;bool operator!=(const Self&amp; src) const { return T_Base::operator!=(src); }
&lt;br&gt;&lt;br&gt;with the following error from gcc:
&lt;br&gt;/usr/include/glibmm-2.4/glibmm/containers.h|340|error: 'operator!=' is not a
&lt;br&gt;member of 'Gtk::Notebook_Helpers::PageIterator'|
&lt;br&gt;&lt;br&gt;It works fine when the const_iterator is replaced with a plain iterator.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543671&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543671&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 5
&lt;br&gt;Date: Fri, 18 Jul 2008 23:40:50 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=24&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 543671]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Notebook::PageList::const_iterator	operator!= does not work (with gcc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4.3.1)
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=25&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=26&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080718234050.4101A23F516@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543671&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543671&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | general | Ver: 2.12.x
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #1 from Julien Langer &amp;nbsp;2008-07-18 23:40 UTC -------
&lt;br&gt;Well, const_iterator doesn't seem to be the only iterator type that's not
&lt;br&gt;working:
&lt;br&gt;reverse_iterator and const_reverse_iterato produce the same error.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543671&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543671&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 6
&lt;br&gt;Date: Sat, 19 Jul 2008 20:35:16 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 543772] New: Unable to load from glade
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; using	gtkmm in MS Visual Studio 2008
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=28&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=29&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-543772-5595@...&lt;/a&gt;/&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543772&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543772&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | general | Ver: 2.4.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Unable to load from glade using gtkmm in MS Visual
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Studio 2008
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Product: gtkmm
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version: 2.4.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Platform: Other
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OS/Version: All
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: UNCONFIRMED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: major
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component: general
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AssignedTo: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ReportedBy: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=31&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ngwane_emma@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QAContact: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=32&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;GNOME version: Unspecified
&lt;br&gt;&amp;nbsp; &amp;nbsp;GNOME milestone: Unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;Please describe the problem:
&lt;br&gt;Hi,
&lt;br&gt;My simple gtkmm application fails to run in MS Visual Studio 2008 although it
&lt;br&gt;successfully compiles in the IDE (Have added the property sheets and tweaked
&lt;br&gt;the settings as described on the gtkmm documentation home page.
&lt;br&gt;&lt;br&gt;Reason:
&lt;br&gt;The execution of the program fails when it encounters the following code
&lt;br&gt;snippet:
&lt;br&gt;Glib::RefPtr&amp;lt;Gnome::Glade::Xml&amp;gt; mainXml= Gnome::Glade::Xml::create(cars.glade);
&lt;br&gt;&lt;br&gt;it produces the following error message:
&lt;br&gt;&lt;br&gt;Glib::ConvertError at memory location 0x0023f52c
&lt;br&gt;&lt;br&gt;console shows a warning:
&lt;br&gt;(Project CARS.exe:5000): libglade-WARNING **: could not find glade file
&lt;br&gt;'\xcc\xc
&lt;br&gt;c\xcc\xcccars.glade'
&lt;br&gt;&lt;br&gt;&lt;br&gt;Steps to reproduce:
&lt;br&gt;1. Create any simple glade file
&lt;br&gt;2. Create a gtkmm project and write a small program to load widgets from the
&lt;br&gt;glade file
&lt;br&gt;3. Compile and run the program in Microsoft Visual Studio
&lt;br&gt;&lt;br&gt;&lt;br&gt;Actual results:
&lt;br&gt;Application crashes on execution
&lt;br&gt;&lt;br&gt;Expected results:
&lt;br&gt;the application should have executed well because it was successfully compiled
&lt;br&gt;without errors
&lt;br&gt;&lt;br&gt;Does this happen every time?
&lt;br&gt;Yes
&lt;br&gt;&lt;br&gt;Other information:
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=543772&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=543772&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 7
&lt;br&gt;Date: Mon, 21 Jul 2008 15:07:56 +0000 (UTC)
&lt;br&gt;From: &amp;quot;glibmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 423990] glibmm et al don't recognize
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new GNU	m4
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=34&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=35&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;20080721150756.537CD23F52F@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; glibmm | build | Ver: unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #8 from Damien Carbery &amp;nbsp;2008-07-21 15:07 UTC -------
&lt;br&gt;Reopening as the bug still exists for me in 2.17.x.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=423990&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=423990&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;Message: 8
&lt;br&gt;Date: Tue, 22 Jul 2008 10:05:24 +0000 (UTC)
&lt;br&gt;From: &amp;quot;gtkmm (bugzilla.gnome.org)&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=36&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bugzilla-daemon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: [gtkmm bugzilla] [Bug 544135] New: [PATCH] Include depreated
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; flags	in gtkmmconfig.in (backport from trunk)
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=37&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=38&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-544135-5595@...&lt;/a&gt;/&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=utf-8
&lt;br&gt;&lt;br&gt;If you have any questions why you received this email, please see the text at
&lt;br&gt;the end of this email. Replies to this email are NOT read, please see the text
&lt;br&gt;at the end of this email. You can add comments to this bug at:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=544135&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=544135&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; gtkmm | general | Ver: 2.10.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: [PATCH] Include depreated flags in gtkmmconfig.in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (backport from trunk)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Product: gtkmm
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version: 2.10.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Platform: Other
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OS/Version: Linux
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: UNCONFIRMED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component: general
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AssignedTo: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=39&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ReportedBy: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jhs@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QAContact: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CC: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=42&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;GNOME version: 2.19/2.20
&lt;br&gt;&amp;nbsp; &amp;nbsp;GNOME milestone: Unspecified
&lt;br&gt;&lt;br&gt;&lt;br&gt;Backports this change from trunk:
&lt;br&gt;2007-10-12 &amp;nbsp;Armin Burgmeier &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=43&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;armin@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * gdk/gdkmmconfig.h.in:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * gtk/gtkmmconfig.h.in:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * configure.in: Added G{D,T}KMM_DISABLE_DEPRECATED defines to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g{d,t}kmmconfig.h so other code can check whether deprecated API is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; available or not.
&lt;br&gt;&lt;br&gt;This allows to build bakery without modifications on maemo.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;See &lt;a href=&quot;http://bugzilla.gnome.org/page.cgi?id=email.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/page.cgi?id=email.html&lt;/a&gt;&amp;nbsp;for more info about why you received
&lt;br&gt;this email, why you can't respond via email, how to stop receiving
&lt;br&gt;emails (or reduce the number you receive), and how to contact someone
&lt;br&gt;if you are having problems with the system.
&lt;br&gt;&lt;br&gt;You can add comments to this bug at &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=544135&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=544135&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gtkmm-forge mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=44&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gtkmm-forge@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gtkmm-forge&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;End of Gtkmm-forge Digest, Vol 26, Issue 6
&lt;br&gt;******************************************
&lt;br&gt;_______________________________________________
&lt;br&gt;gtkmm-list mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18586429&amp;i=45&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gtkmm-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gtkmm-list&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gtkmm-forge-Digest%2C-Vol-26%2C-Issue-6-tp18586429p18586429.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18584894</id>
	<title>Re: Building glibmm-2.16.4 on windows</title>
	<published>2008-07-22T00:59:44Z</published>
	<updated>2008-07-22T00:59:44Z</updated>
	<author>
		<name>Roman R</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;BTW glibmm, cairomm, perhaps others, I did not try, could not be compiled using VS 2005 Express.&lt;br&gt;Solution will not open without modification. Also pre-link step not correctly configured.&lt;br&gt;If file path to gendef tool contains spaces then pre-link step will not run. File path should&lt;br&gt;
be taked in quotes.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 22, 2008 at 1:27 AM, john blair &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18584894&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mailtome200420032002@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;Added glib-2.0.lib as AdditionalDependencies in dispatcher.vcproj to resolve the error.&lt;div&gt;
&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;&lt;br&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;----- Original Message ----&lt;br&gt;From: john blair &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18584894&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mailtome200420032002@...&lt;/a&gt;&amp;gt;&lt;br&gt;
To: Surya Kiran Gullapalli &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18584894&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;suryakiran.gullapalli@...&lt;/a&gt;&amp;gt;&lt;br&gt;Cc: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18584894&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gtkmm-list@...&lt;/a&gt;&lt;br&gt;
Sent: Monday, July 21, 2008 1:00:37 PM&lt;br&gt;Subject: Re: Building glibmm-2.16.4 on windows&lt;br&gt;&lt;br&gt;
&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;div&gt;Thanks.&lt;br&gt;That error got resolved. But now getting &lt;br&gt;Linking...&lt;br&gt;dispatcher.obj : error LNK2019: unresolved external symbol _g_log referenced in function &amp;quot;public: virtual __thiscall `anonymous namespace&amp;#39;::ThreadProgress::~ThreadProgress(void)&amp;quot; (??1ThreadProgress@?A0xa5c2bf9b@@UAE@XZ)&lt;br&gt;
Debug/dispatcher.exe : fatal error LNK1120: 1 unresolved externals&lt;br&gt;examples_dispatcher - 2 error(s), 1 warning(s)&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;br&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;
----- Original Message ----&lt;br&gt;From: Surya Kiran Gullapalli &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18584894&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;suryakiran.gullapalli@...&lt;/a&gt;&amp;gt;&lt;br&gt;To: john blair &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18584894&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mailtome200420032002@...&lt;/a&gt;&amp;gt;&lt;br&gt;
Sent: Monday, July 21, 2008 12:49:33 PM&lt;br&gt;Subject: Re:
 Building glibmm-2.16.4 on windows&lt;br&gt;&lt;br&gt;
&lt;div dir=&quot;ltr&quot;&gt;If you&amp;#39;re compiling on visual studio, include &lt;a rel=&quot;nofollow&quot; href=&quot;http://keyfile.cc&quot; target=&quot;_blank&quot;&gt;keyfile.cc&lt;/a&gt; and &lt;a rel=&quot;nofollow&quot; href=&quot;http://regex.cc&quot; target=&quot;_blank&quot;&gt;regex.cc&lt;/a&gt; files into the gtkmm project file.&lt;br&gt;
&lt;br&gt;Surya&lt;br&gt;&lt;b