[gtkmm] Gtkmm-forge digest, Vol 1 #514 - 4 msgs



Send Gtkmm-forge mailing list submissions to
	gtkmm-forge lists sourceforge net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
	gtkmm-forge-request lists sourceforge net

You can reach the person managing the list at
	gtkmm-forge-admin lists sourceforge net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."


gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla.  A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs.


Today's Topics:

   1. [Bug 122450] Changed - stylesheet to generate devhelp documentation from doxygen xml (bugzilla-daemon widget gnome org)
   2. [Bug 122450] Changed - stylesheet to generate devhelp documentation from doxygen xml (bugzilla-daemon widget gnome org)
   3. [Bug 121615] Changed - Problems with Gdk::Pixbuf columns in Gtk::TreeView (bugzilla-daemon widget gnome org)
   4. [Bug 121615] Changed - Problems with Gdk::Pixbuf columns in Gtk::TreeView (bugzilla-daemon widget gnome org)

--__--__--

Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, roel stack be
Cc: 
Date: Wed, 17 Sep 2003 12:03:53 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 122450] Changed - stylesheet to generate devhelp documentation from doxygen xml

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=122450

Changed by murrayc usa net 

--- shadow/122450	Tue Sep 16 13:00:55 2003
+++ shadow/122450.tmp.2879	Wed Sep 17 12:03:53 2003
@@ -60,6 +60,22 @@
 the xsltproc command has to be changed to reflect that.
 
 ------- Additional Comments From roel stack be  2003-09-16 13:00 -------
 Created an attachment (id=19990)
 patch to Doxyfile.in and Makefile.am
 
+
+------- Additional Comments From murrayc usa net  2003-09-17 12:03 -------
+It just seems to create a file with these contents:
+
+<?xml version="1.0"?>
+<book xmlns:fo="http://www.w3.org/1999/XSL/Format"; title="Gtkmm
+Library Reference Manual" name="gtkmm" link="index.html">
+  <chapters>
+    <sub name="Classes" link="reference/html/classes.html"/>
+    <sub name="Namespaces" link="reference/html/namespaces.html"/>
+  </chapters>
+  <functions/>
+</book>
+
+That does not seem very useful. I guess that devhelp can not index the
+symbols. Well, it's better than nothing, I suppose.


--__--__--

Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, roel stack be
Cc: 
Date: Wed, 17 Sep 2003 12:25:28 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 122450] Changed - stylesheet to generate devhelp documentation from doxygen xml

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=122450

Changed by murrayc usa net 

--- shadow/122450	Wed Sep 17 12:03:53 2003
+++ shadow/122450.tmp.16978	Wed Sep 17 12:25:28 2003
@@ -76,6 +76,12 @@
   </chapters>
   <functions/>
 </book>
 
 That does not seem very useful. I guess that devhelp can not index the
 symbols. Well, it's better than nothing, I suppose.
+
+------- Additional Comments From murrayc usa net  2003-09-17 12:25 -------
+Hmm, the .xsl does seem to do a lot more. Maybe it's because I have
+put the .xsl file in docs/reference instead of tools/. I'll commit
+what I have to cvs when I get a chance (probably a couple of days) and
+we can figure it out.


--__--__--

Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Wed, 17 Sep 2003 12:27:25 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 121615] Changed - Problems with Gdk::Pixbuf columns in Gtk::TreeView

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=121615

Changed by nightslayer gmx de 

--- shadow/121615	Tue Sep 16 14:54:42 2003
+++ shadow/121615.tmp.18300	Wed Sep 17 12:27:25 2003
@@ -165,6 +165,31 @@
 Is this a very new gcc 3.2.x bug?
 
 
 ------- Additional Comments From olau hardworking dk  2003-09-16 14:54 -------
 Simon, have you tried the newest GCC 3.3 in Debian, i.e. a CVS version
 of 3.3.2?
+
+------- Additional Comments From nightslayer gmx de  2003-09-17 12:27 -------
+I only tried the two compilers mentioned above, these are
+
+g++ (GCC) 3.3.1 20030626 (Debian prerelease)
+
+and
+
+g++-3.2 (GCC) 3.2.3 20030415 (Debian prerelease)
+
+3.3.1 is the newest package from Debian Sarge and I do not want to
+update to SID (Still in Dev), I've had a very bad experience with
+these extreme unstable packages. Maybe I'll try the CVS version 3.3.2
+soon. As a temporary solution I use the following code to create the
+PixBuf-Column:
+
+  Gtk::CellRendererPixbuf *imagerenderer =
+      Gtk::manage(new Gtk::CellRendererPixbuf);
+  Gtk::TreeViewColumn* iconcolumn =
+      Gtk::manage(new Gtk::TreeViewColumn("Icon", *imagerenderer));
+  iconcolumn->set_renderer(*imagerenderer, this->column_set.icon);
+  this->tree_view.append_column (*iconcolumn);
+
+Maybe the whole problem is related to my gtkmm-version 2.2.2-1, which
+is older than Martin's version 2.2.5?


--__--__--

Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, nightslayer gmx de
Cc: 
Date: Wed, 17 Sep 2003 12:34:40 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 121615] Changed - Problems with Gdk::Pixbuf columns in Gtk::TreeView

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=121615

Changed by murrayc usa net 

--- shadow/121615	Wed Sep 17 12:27:25 2003
+++ shadow/121615.tmp.22977	Wed Sep 17 12:34:40 2003
@@ -190,6 +190,13 @@
       Gtk::manage(new Gtk::TreeViewColumn("Icon", *imagerenderer));
   iconcolumn->set_renderer(*imagerenderer, this->column_set.icon);
   this->tree_view.append_column (*iconcolumn);
 
 Maybe the whole problem is related to my gtkmm-version 2.2.2-1, which
 is older than Martin's version 2.2.5?
+
+------- Additional Comments From murrayc usa net  2003-09-17 12:34 -------
+> Maybe the whole problem is related to my gtkmm-version 2.2.2-1, which
+> is older than Martin's version 2.2.5?
+
+Very possibly. Always try the latest version (2.2.7 now) before
+submitting a bug.



--__--__--

_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge


End of Gtkmm-forge Digest



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]