Gtkmm-forge digest, Vol 1 #1000 - 13 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 321062] Gnome::Main::Main calls gnome_program_init with wrong terminating NULL (gnomemm (bugzilla.gnome.org))
   2. [Bug 144697] load_directory in async-handle.cc crashes. (gnomemm (bugzilla.gnome.org))
   3. [Bug 321552] Double entries in trackable list when binding a slot to a slot (libsigc++ (bugzilla.gnome.org))
   4. [Bug 144697] load_directory in async-handle.cc crashes. (gnomemm (bugzilla.gnome.org))
   5. [Bug 144697] load_directory in async-handle.cc crashes. (gnomemm (bugzilla.gnome.org))
   6. [Bug 321552] Double entries in trackable list when binding a slot to a slot (libsigc++ (bugzilla.gnome.org))
   7. [Bug 144697] load_directory in async-handle.cc crashes. (gnomemm (bugzilla.gnome.org))
   8. [Bug 144697] load_directory in async-handle.cc crashes. (gnomemm (bugzilla.gnome.org))
   9. [Bug 144697] load_directory in async-handle.cc crashes. (gnomemm (bugzilla.gnome.org))
  10. [Bug 321062] Gnome::Main::Main calls gnome_program_init with wrong terminating NULL (gnomemm (bugzilla.gnome.org))
  11. [Bug 320631] Maybe Widget::map() should be public. (gtkmm (bugzilla.gnome.org))
  12. [Bug 308683] Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should have const argument (gtkmm (bugzilla.gnome.org))
  13. [Bug 158040] RTTI problem with Visual Studio 2003 (glibmm (bugzilla.gnome.org))

--__--__--

Message: 1
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 03:44:08 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 321062] Gnome::Main::Main calls gnome_program_init with wrong terminating NULL

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D321062
 gnomemm | libgnomemm | Ver: unspecified





------- Additional Comments From Murray Cumming  2005-11-16 08:44 -------
OK. I will try to do that in the next day or so. Bug me if I don't. Thank=
s.

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


--__--__--

Message: 2
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 03:49:34 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 144697] load_directory in async-handle.cc crashes.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D144697
 gnomemm | gnome-vfsmm | Ver: unspecified





------- Additional Comments From Murray Cumming  2005-11-16 08:49 -------
Many thanks.

> Compilation fails because the Glib::wrap Function for
> GnomeVFSFileInfo* is placed below the code that uses it in the generate=
d
> file-info.h file.

Can you add a prototype declaration to solve that problem?

I'll need to investigate exactly what this does (or what it was doing wro=
ng
before) if you can't explain it to me. A ChangeLog entry would be a good =
start.

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


--__--__--

Message: 3
From: "libsigc++ (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 03:54:50 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 321552] Double entries in trackable list when binding a slot to a slot

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D321552
 libsigc++ | adaptors | Ver: 2.0.x





------- Additional Comments From Murray Cumming  2005-11-16 08:54 -------
Maybe the copying in this patch has caused this somehow, though it's a wi=
ld guess:
http://bugzilla.gnome.org/show_bug.cgi?id=3D166217

You could test a version of libsigc++ before the patch was applied.

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


--__--__--

Message: 4
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 09:22:32 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 144697] load_directory in async-handle.cc crashes.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D144697
 gnomemm | gnome-vfsmm | Ver: unspecified





------- Additional Comments From Volker Str=C3=B6bel  2005-11-16 14:22 --=
-----
The bug seems to be related to the template <class T>
struct TypeTraits< Glib::RefPtr<const T> >
in glibmm/glib/glibmm/containerhandle_shared.h.

This template is useable for gobjects only but GnomeVfsFileInfo isn't a g=
object.

The patch adds a specialized version for Glib::RefPtr<Gnome::Vfs::FileInf=
o> that
uses Glib::wrap in the to_cpp_type() function und gnome_vfs_file_info_unr=
ef(..)
in release_c_type(...).

The patch for bug #132187 might be the reason for this problem.


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


--__--__--

Message: 5
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 09:24:54 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 144697] load_directory in async-handle.cc crashes.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D144697
 gnomemm | gnome-vfsmm | Ver: unspecified

Volker Str=C3=B6bel changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
  Attachment #54776|0                           |1
        is obsolete|                            |



------- Additional Comments From Volker Str=C3=B6bel  2005-11-16 14:24 --=
-----
Created an attachment (id=3D54826)
 --> (http://bugzilla.gnome.org/attachment.cgi?id=3D54826&action=3Dview)
Adjusted patch


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


--__--__--

Message: 6
From: "libsigc++ (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 13:40:01 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 321552] Double entries in trackable list when binding a slot to a slot

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D321552
 libsigc++ | adaptors | Ver: 2.0.x





------- Additional Comments From Philip Langdale  2005-11-16 18:40 ------=
-
While I could understand why it might be responsible, that's not the case=
 here;
I just tested with 2.0.9 and the problem still existed back then.

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


--__--__--

Message: 7
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 14:48:51 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 144697] load_directory in async-handle.cc crashes.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D144697
 gnomemm | gnome-vfsmm | Ver: unspecified





------- Additional Comments From Murray Cumming  2005-11-16 19:48 -------
This seems sensible to me. Well done. Applied.

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


--__--__--

Message: 8
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 14:49:19 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 144697] load_directory in async-handle.cc crashes.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D144697
 gnomemm | gnome-vfsmm | Ver: unspecified

Murray Cumming changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
         Resolution|INVALID                     |
             Status|RESOLVED                    |UNCONFIRMED



------- Additional Comments From Murray Cumming  2005-11-16 19:49 -------
reopening so I can close it as fixed.

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


--__--__--

Message: 9
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 14:49:36 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 144697] load_directory in async-handle.cc crashes.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D144697
 gnomemm | gnome-vfsmm | Ver: unspecified

Murray Cumming changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
         Resolution|                            |FIXED
             Status|UNCONFIRMED                 |RESOLVED



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


--__--__--

Message: 10
From: "gnomemm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 15:00:39 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 321062] Gnome::Main::Main calls gnome_program_init with wrong terminating NULL

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D321062
 gnomemm | libgnomemm | Ver: unspecified





------- Additional Comments From Murray Cumming  2005-11-16 20:00 -------
Done.

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


--__--__--

Message: 11
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 15:06:22 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 320631] Maybe Widget::map() should be public.

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D320631
 gtkmm | general | Ver: 2.8.x

Murray Cumming changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
         Resolution|                            |FIXED
             Status|UNCONFIRMED                 |RESOLVED



------- Additional Comments From Murray Cumming  2005-11-16 20:06 -------
Fixed in cvs, though we (well GTK+ really) need to document how and when =
this
should be used.

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


--__--__--

Message: 12
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 15:14:52 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 308683] Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should have const argument

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D308683
 gtkmm | general | Ver: 2.6.x

Murray Cumming changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
         Resolution|                            |FIXED
             Status|UNCONFIRMED                 |RESOLVED



------- Additional Comments From Murray Cumming  2005-11-16 20:14 -------
Done in cvs, in HEAD, though we can not just change API/ABI like that. I =
have
added the const version and deprecated the old one. Let's see if that cre=
ates
ambiguity.


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


--__--__--

Message: 13
From: "glibmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Wed, 16 Nov 2005 15:35:46 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 158040] RTTI problem with Visual Studio 2003

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D158040
 glibmm | object | Ver: 2.4.x





------- Additional Comments From Cedric Gustin  2005-11-16 20:35 -------
I confirm that the MSVC bug is fixed in Visual Studio 2005 RTM. The drawb=
ack :
The /vd2 flag is now required at compile time.=20

Now, the next step is to build gtkmm... I will do that this weekend and s=
ee if
this /vd2 flag generates any conflict with the GTK+ libraries.

------- You are receiving this mail because: -------
You are the assignee 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]