Gtkmm-forge digest, Vol 1 #850 - 6 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. Do not try to unsubscribe gtkmm-forge from gtkmm-list.


Today's Topics:

   1. [Bug 163992] segfault with Widget::get_default_colormap() (bugzilla-daemon bugzilla gnome org)
   2. [Bug 164007] segfault in custom widget example (bugzilla-daemon bugzilla gnome org)
   3. [Bug 164007] segfault in custom widget example (bugzilla-daemon bugzilla gnome org)
   4. [Bug 163992] segfault with Widget::get_default_colormap() (bugzilla-daemon bugzilla gnome org)
   5. [Bug 164113] New: Feature Request: DirectoryHandle::read_next() return null RefPtr instead of 'exist' arg (bugzilla-daemon bugzilla gnome org)
   6. [Bug 88610] Need nice hierarchy picture (bugzilla-daemon bugzilla gnome org)

--__--__--

Message: 1
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Fri, 14 Jan 2005 02:30:02 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 163992] segfault with Widget::get_default_colormap()

Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=163992
 gtkmm | general | Ver: 2.4

Murray Cumming changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|segfault with               |segfault with
                   |get_default_colormap()      |Widget::get_default_colormap
                   |                            |()



------- Additional Comments From Murray Cumming  2005-01-14 02:30 -------
I can not reproduce this. What version of gtkmm are you using? If you are using
a latest stable or unstable version then please submit an actual compileable
test case.

------- You are receiving this mail because: -------
You are the assignee for the bug.


--__--__--

Message: 2
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Fri, 14 Jan 2005 03:26:02 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 164007] segfault in custom widget example

Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=164007
 gtkmm | general | Ver: 2.4





------- Additional Comments From Marco Scholten  2005-01-14 03:26 -------
No it's not, it's meant to make the example work.
I just discovered bug 163992 while working on this, this patch does not fix 
that, just the example.

------- You are receiving this mail because: -------
You are the assignee for the bug.


--__--__--

Message: 3
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Fri, 14 Jan 2005 04:49:03 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 164007] segfault in custom widget example

Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=164007
 gtkmm | general | Ver: 2.4





------- Additional Comments From Murray Cumming  2005-01-14 04:49 -------
1. This patch contains whitespace changes. Please try to remove them so I can
more easily see what has really changed.
2. This patch does more than just what it says in the ChangeLog. Please explain
them.
3. If this patch contains a workaround for another bug, then please wait until
that bug is resolved and/or clearly comment-out that code so that it can be
re-enabled later.

By the way, the gtkmm book gets the code directly from the examples directory,
so it is not necessary to also patch the book.

------- You are receiving this mail because: -------
You are the assignee for the bug.


--__--__--

Message: 4
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Fri, 14 Jan 2005 15:55:59 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 163992] segfault with Widget::get_default_colormap()

Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=163992
 gtkmm | general | Ver: 2.4





------- Additional Comments From Marco Scholten  2005-01-14 15:55 -------
Created an attachment (id=36032)
 --> (http://bugzilla.gnome.org/attachment.cgi?id=36032&action=view)
compilable test case

I'm using gtkmm 2.4.8
On debian unstable.

------- You are receiving this mail because: -------
You are the assignee for the bug.


--__--__--

Message: 5
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Fri, 14 Jan 2005 17:18:27 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 164113] New: Feature Request: DirectoryHandle::read_next() return null RefPtr instead of 'exist' arg

Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=164113
 gnomemm | gnome-vfsmm | Ver: 2.6

           Summary: Feature Request: DirectoryHandle::read_next() return
                    null RefPtr instead of 'exist' arg
           Product: gnomemm
           Version: 2.6
          Platform: Other
        OS/Version: All
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: Low
         Component: gnome-vfsmm
        AssignedTo: gtkmm-forge lists sourceforge net
        ReportedBy: mjmt internode on net
                CC: all-bugs bugzilla gnome org


Currently, the following has to be done:

bool exist;
Glib::RefPtr<Gnome::Vfs::FileInfo> info;
while ((info = directory_handle.read_next(exist)) && exist) {
  ...
}

The 'exist' argument is cumbersome and seems redundant. Compare if instead
read_next() just returned a null RefPtr, the above could be:

Glib::RefPtr<Gnome::Vfs::FileInfo> info;
while (info = directory_handle.read_next()) {
  ...
}

------- You are receiving this mail because: -------
You are the assignee for the bug.


--__--__--

Message: 6
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Fri, 14 Jan 2005 18:06:01 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 88610] Need nice hierarchy picture

Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=88610
 gtkmm | reference documentation | Ver: 2.4





------- Additional Comments From Marco Scholten  2005-01-14 18:06 -------
Created an attachment (id=36037)
 --> (http://bugzilla.gnome.org/attachment.cgi?id=36037&action=view)
widget hierarchy

It's a boring job but someone has got to do it.
So i made this widget hierarchy chart.
Comments are welcome, please check it for completeness and typo's.
If this seems usefull then i will make a html page with an imagemap and links
to the reference documentation (that sounds even more boring)
I will then also submit the dia source document of course.

------- You are receiving this mail because: -------
You are the assignee for the bug.
You are the QA contact for the 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]