Gtkmm-forge digest, Vol 1 #1061 - 4 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Cc:
- Subject: Gtkmm-forge digest, Vol 1 #1061 - 4 msgs
- Date: Tue, 14 Feb 2006 20:11:44 -0800
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 330966] Gtk::IconTheme::list_icons: example contexts don't work (gtkmm (bugzilla.gnome.org))
2. [Bug 330966] Gtk::IconTheme::list_icons: example contexts don't work (gtkmm (bugzilla.gnome.org))
3. [Bug 331077] gettext typos (gtkmm (bugzilla.gnome.org))
4. [Bug 329333] A convenient wrapper of TreeView for simple ListBox'es (gtkmm (bugzilla.gnome.org))
--__--__--
Message: 1
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Tue, 14 Feb 2006 02:43:08 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 330966] Gtk::IconTheme::list_icons: example contexts don't work
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=3D330966
gtkmm | reference documentation | Ver: unspecified
Murray Cumming changed:
What |Removed |Added
-------------------------------------------------------------------------=
---
CC| |murrayc murrayc com
------- Comment #1 from Murray Cumming 2006-02-14 07:43 UTC -------
OK. Thanks.
But in your email you said that it crashed too. Or was that just because =
you
used a null pointer somewhere?
--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
--__--__--
Message: 2
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Tue, 14 Feb 2006 05:04:50 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 330966] Gtk::IconTheme::list_icons: example contexts don't work
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=3D330966
gtkmm | reference documentation | Ver: unspecified
------- Comment #2 from John Spray 2006-02-14 10:04 UTC -------
list_icons never segfaulted, that was get_search_path. I haven't investi=
gated
that any further.
--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
--__--__--
Message: 3
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Tue, 14 Feb 2006 06:21:57 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 331077] gettext typos
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=3D331077
gtkmm | general | Ver: unspecified
------- Comment #3 from Rob Page 2006-02-14 11:21 UTC -------
Gah! Yes, *slaps self*... Murray reminded me of this on the last patch I
submitted too... I'll get there in the end :)
--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
--__--__--
Message: 4
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Tue, 14 Feb 2006 07:10:29 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 329333] A convenient wrapper of TreeView for simple ListBox'es
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=3D329333
gtkmm | TreeView | Ver: 2.8.x
baltasarq yahoo es changed:
What |Removed |Added
-------------------------------------------------------------------------=
---
Attachment #58764|0 |1
is obsolete| |
------- Comment #16 from baltasarq yahoo es 2006-02-14 12:10 UTC -------
Created an attachment (id=3D59331)
--> (http://bugzilla.gnome.org/attachment.cgi?id=3D59331&action=3Dview)
Implementation of ListViewText (multiple columns)
I think I have addressed most of the coding style issues, though I need m=
ore
information (no examples available yet).
Currently, the files have an indentation of 4 spaces: do you really want =
that
to be of only two spaces?
Say you have something like:
data =3D new(std::nothrow) DataClass;
if ( data !=3D NULL ) {
// more stuff ...
}
else throw ?
Does Gtk have any exception classes ? Should I just put:
data =3D new DataClass;
... and let C++ throw the bad_alloc exception ?
Another example:
void ListViewText::set_column_title(unsigned int i, const Glib::ustring& =
title)
{
if ( get_columns().size() > i ) {
get_column( i )->set_title( title );
}
}
I would feel more comfortable, if 'i' is incorrect, throwing an exception=
(or
returning an error value in the worst case). But I don't know what style =
you
use in these cases.I don't like the "do nothing on error" approach, but
obviously I will follow the Gtkmm style lines. I ask just because I haven=
't
found anything about this in docs.
I have removed the comment separators in the cpp files. Do you use someth=
ing
else to separate member functions or just a blank space, as it is now ?
get_selected() still returns a vector<int>, as I simply don't know to dea=
l with
list_handle<>. Murray ? Did you receive my email ?
--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
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]