[gtkmm] Gtkmm-forge digest, Vol 1 #691 - 5 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Cc:
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #691 - 5 msgs
- Date: Sat, 22 May 2004 20:11:52 -0700
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 104332] - Make RefPtr<> a general-purpose smart pointer (bugzilla-daemon bugzilla gnome org)
2. [Bug 142956] New: - ComboBoxEntryText displays text column twice in popup (bugzilla-daemon bugzilla gnome org)
3. [Bug 142956] - ComboBoxEntryText displays text column twice in popup (bugzilla-daemon bugzilla gnome org)
4. [Bug 142970] New: - Gtk::TreeView::get_path_at_pos dosen't free returned path (bugzilla-daemon bugzilla gnome org)
5. [Bug 142956] - ComboBoxEntryText displays text column twice in popup (bugzilla-daemon bugzilla gnome org)
--__--__--
Message: 1
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Sat, 22 May 2004 06:42:42 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 104332] - Make RefPtr<> a general-purpose smart pointer
http://bugzilla.gnome.org/show_bug.cgi?id=104332
glibmm | object | Ver: 2.4.x
martin-ml hippogriff de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |martin-ml hippogriff de
------- Additional Comments From martin-ml hippogriff de 2004-05-22 06:42 -------
Not reading in detail, but:
There is no SigC::RefPtr<> equivalent in libsigc++-2.0. We removed the memory
management functionality because libsigc++ is a signal/slot library and no smart
pointer library.
------- 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: Sat, 22 May 2004 08:36:54 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142956] New: - ComboBoxEntryText displays text column twice in popup
http://bugzilla.gnome.org/show_bug.cgi?id=142956
gtkmm | general | Ver: 2.4
Summary: ComboBoxEntryText displays text column twice in popup
Product: gtkmm
Version: 2.4
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: teemu tervo gmx net
Here's a test case to reproduce it:
-------------------------------------------
#include <gtkmm/main.h>
#include <gtkmm/window.h>
#include <gtkmm/comboboxentrytext.h>
int main(int argc, char **argv)
{
Gtk::Main kit(argc, argv);
Gtk::ComboBoxEntryText cbet;
cbet.append_text("Mother");
cbet.append_text("Mary");
cbet.append_text("Joseph");
Gtk::Window window;
window.add(cbet);
window.show_all();
Gtk::Main::run(window);
}
-------------------------------------------
------- 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: Sat, 22 May 2004 08:38:22 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142956] - ComboBoxEntryText displays text column twice in popup
http://bugzilla.gnome.org/show_bug.cgi?id=142956
gtkmm | general | Ver: 2.4
------- Additional Comments From teemu tervo gmx net 2004-05-22 08:38 -------
Created an attachment (id=27929)
--> (http://bugzilla.gnome.org/attachment.cgi?id=27929&action=view)
Proposed fix
------- 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: Sat, 22 May 2004 13:49:19 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142970] New: - Gtk::TreeView::get_path_at_pos dosen't free returned path
http://bugzilla.gnome.org/show_bug.cgi?id=142970
gtkmm | TreeView | Ver: unspecified
Summary: Gtk::TreeView::get_path_at_pos dosen't free returned
path
Product: gtkmm
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: TreeView
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: david thepriorities com
When calling the function Gtk::TreeView::get_path_at_pos, gtkmm takes a copy of
the returned GtkTreePath object, and passes this copy back to the caller of the
function. The GTK+ docs specifiy that the returned GtkTreePath should be freed,
but gtkmm just forgets about it.
Changing the line
path = TreeModel::Path(pTreePath, true);
to
path = TreeModel::Path(pTreePath, false);
in gtkmm/gtk/src/treeview.ccg at line 259, so that you don't take a copy should
fix this.
------- 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: Sat, 22 May 2004 16:21:03 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 142956] - ComboBoxEntryText displays text column twice in popup
http://bugzilla.gnome.org/show_bug.cgi?id=142956
gtkmm | general | Ver: 2.4
murrayc murrayc com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From murrayc murrayc com 2004-05-22 16:21 -------
Thanks. Applied. Please patch the Changelog in future.
------- 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]