[gtkmm] Gtkmm-forge digest, Vol 1 #694 - 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 141571]  - spec description is incorrect (bugzilla-daemon bugzilla gnome org)
   2. [Bug 142758]  - Add Gtk::ComboBoxEntry::get_entry() (bugzilla-daemon bugzilla gnome org)
   3. [Bug 143150] New:  - typo in gtk/gtkmm/treepath.h stops the build (bugzilla-daemon bugzilla gnome org)
   4. [Bug 142758]  - Add Gtk::ComboBoxEntry::get_entry() (bugzilla-daemon bugzilla gnome org)
   5. [Bug 143160] New:  - typo in gtk/gtkmm/treepath.h stops the build (bugzilla-daemon bugzilla gnome org)
   6. [Bug 142138]  - Gtk::FileChooser::get_filename() should return std::string (bugzilla-daemon bugzilla gnome org)

--__--__--

Message: 1
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 25 May 2004 15:08:26 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 141571]  - spec description is incorrect

http://bugzilla.gnome.org/show_bug.cgi?id=141571
glibmm | general | Ver: 2.4.x

murrayc murrayc com changed:

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



------- Additional Comments From murrayc murrayc com  2004-05-25 15:08 -------
I have removed the glibmm.spec file.

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


--__--__--

Message: 2
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 25 May 2004 15:12:13 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142758]  - Add Gtk::ComboBoxEntry::get_entry()

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





------- Additional Comments From murrayc murrayc com  2004-05-25 15:12 -------
We would need to double-check that is _always an Entry, and maybe add the
function to GTK+.

When adding this to gtkmm, remember to add a const overload too.

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


--__--__--

Message: 3
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 25 May 2004 15:15:15 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 143150] New:  - typo in gtk/gtkmm/treepath.h stops the build

http://bugzilla.gnome.org/show_bug.cgi?id=143150
gtkmm | build | Ver: 2.2

           Summary: typo in gtk/gtkmm/treepath.h stops the build
           Product: gtkmm
           Version: 2.2
          Platform: Other
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: critical
          Priority: High
         Component: build
        AssignedTo: gtkmm-forge lists sourceforge net
        ReportedBy: mohk gmx de


./configure --prefix=/opt/gnome && make

$ gcc -v
Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.0/specs
Configured with: ../gcc-3.4.0-20040416/configure --prefix=/usr --enable-shared
--enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu
--enable-languages=c,c++
Thread model: posix
gcc version 3.4.0 20040416 (prerelease)


i made a diff to fix that:
--- gtk/gtkmm/treepath.h.org    2004-05-25 21:04:19.186939760 +0200
+++ gtk/gtkmm/treepath.h        2004-05-25 21:00:38.840437520 +0200
@@ -294,7 +294,7 @@
 {
   // push_back() can't throw -- if it could, this code wouldn't be strongly
exception-safe.
   for(; pbegin != pend; ++pbegin)
-    this->push_back(*begin);
+    this->push_back(*pbegin);
 }
 
 template <class In> inline

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


--__--__--

Message: 4
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 25 May 2004 15:22:52 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142758]  - Add Gtk::ComboBoxEntry::get_entry()

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





------- Additional Comments From daniel elstner gmx net  2004-05-25 15:22 -------
The GTK+ documentation explicitely states that one should use
gtk_bin_get_child() to get the GtkEntry.  I reckon such a function were rather
pointless in plain GTK+ since most of the time, you have to use explicit casts
anyway...

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


--__--__--

Message: 5
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 25 May 2004 18:06:07 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 143160] New:  - typo in gtk/gtkmm/treepath.h stops the build

http://bugzilla.gnome.org/show_bug.cgi?id=143160
gtkmm | build | Ver: 2.2

           Summary: typo in gtk/gtkmm/treepath.h stops the build
           Product: gtkmm
           Version: 2.2
          Platform: Other
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: critical
          Priority: High
         Component: build
        AssignedTo: gtkmm-forge lists sourceforge net
        ReportedBy: mohk gmx de


./configure --prefix=/opt/gnome && make

$ gcc -v
Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.0/specs
Configured with: ../gcc-3.4.0-20040416/configure --prefix=/usr --enable-shared
--enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu
--enable-languages=c,c++
Thread model: posix
gcc version 3.4.0 20040416 (prerelease)


i made a diff to fix that:
--- gtk/gtkmm/treepath.h.org    2004-05-25 21:04:19.186939760 +0200
+++ gtk/gtkmm/treepath.h        2004-05-25 21:00:38.840437520 +0200
@@ -294,7 +294,7 @@
 {
   // push_back() can't throw -- if it could, this code wouldn't be strongly
exception-safe.
   for(; pbegin != pend; ++pbegin)
-    this->push_back(*begin);
+    this->push_back(*pbegin);
 }
 
 template <class In> inline

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


--__--__--

Message: 6
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 25 May 2004 18:14:52 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142138]  - Gtk::FileChooser::get_filename() should return std::string

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





------- Additional Comments From chris cvine freeserve co uk  2004-05-25 18:14 -------
I have just noticed on reviewing some code of mine that there is the same
problem with Gtk::IconInfo::get_filename().  Does this need to be filed as a
separate bug?  (Probably however this is a problem that is going to be repeated
elsewhere in gtkmm-2.4 for any GTK+ file functions which return a gchar* string.)

In gtkmm-2.4.2, I wonder if it would be a good idea to actually convert to UTF-8
in all these methods so that they do return a valid UTF-8 encoding.  It would
avoid breaking ABI (which would occur by changing the return type to std::string
or std::string containers), and at present these filename functions are unusable
with any file systems which use other than ASCII characters or (if they use
other than ASCII) which do not use the UTF-8 codeset, so it wouldn't break API
(applying Glib conversion functions to the Glib::ustrings returned by them after
the event won't be much good as the Glib::ustrings will already be in an error
state if the input wasn't valid UTF-8).

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



--__--__--

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