Gtkmm-forge digest, Vol 1 #943 - 2 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 308683] New: Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should have const argument (bugzilla-daemon bugzilla gnome org)
   2. [Bug 308683] Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should have const argument (bugzilla-daemon bugzilla gnome org)

--__--__--

Message: 1
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Date: Wed, 22 Jun 2005 16:09:33 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 308683] New: Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should have const argument

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

 http://bugzilla.gnome.org/show_bug.cgi?id=3D308683
 gtkmm | general | Ver: 2.6.x

           Summary: Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should h=
ave
                    const argument
           Product: gtkmm
           Version: 2.6.x
          Platform: Other
        OS/Version: All
            Status: UNCONFIRMED
          Severity: trivial
          Priority: Normal
         Component: general
        AssignedTo: gtkmm-forge lists sourceforge net
        ReportedBy: mjmt internode on net
                CC: all-bugs bugzilla gnome org


Currently the function accepts a non-const argument, which means that it =
won't
accept a temporary Gdk::Rectangle, as in:
     gc->set_clip_rectangle(Gdk::Rectangle(0, 0, 42, 42));
Instead a Gdk::Rectangle must be initialized in advance before being pass=
ed to
the function:
     Gdk::Rectangle r(0, 0, 42, 42);
     gc->set_clip_rectangle(r);

While this isn't much of an inconvenience, the function does not guarante=
e that
the referenced rectangle won't be accessed at some later stage in the pro=
gram
after it has gone out of scope.

------- 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
Date: Wed, 22 Jun 2005 16:12:13 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 308683] Gdk::GC::set_clip_rectangle(Gdk::Rectangle&) should have const argument

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

 http://bugzilla.gnome.org/show_bug.cgi?id=3D308683
 gtkmm | general | Ver: 2.6.x

Michael J M Thomson changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
           Priority|Normal                      |Low



------- 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]