Gtkmm-forge Digest, Vol 4, Issue 2
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: Gtkmm-forge Digest, Vol 4, Issue 2
- Date: Mon, 11 Sep 2006 10:29:03 -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-owner 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 351336] gtk_style_attach wrapping is missed
(gtkmm (bugzilla.gnome.org))
2. [Bug 354556] wrap g_get_user_x_dir() functions
(glibmm (bugzilla.gnome.org))
3. [Bug 353242] Optionally disable Atk (--enable-api-atk=no)
(gtkmm (bugzilla.gnome.org))
4. [Bug 354556] wrap g_get_user_x_dir() functions
(glibmm (bugzilla.gnome.org))
5. [Bug 354556] wrap g_get_user_x_dir() functions
(glibmm (bugzilla.gnome.org))
6. [Bug 353242] Optionally disable Atk (--enable-api-atk=no)
(gtkmm (bugzilla.gnome.org))
7. [Bug 352226] gtkmm-2.10.0 build problem with gcc-3.3.6
(gtkmm (bugzilla.gnome.org))
8. [Bug 353242] Optionally disable Atk (--enable-api-atk=no)
(gtkmm (bugzilla.gnome.org))
----------------------------------------------------------------------
Message: 1
Date: Sat, 9 Sep 2006 20:13:37 +0100 (BST)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 351336] gtk_style_attach wrapping is
missed
To: gtkmm-forge lists sourceforge net
Message-ID: <20060909191337 187E76C4095 box gnome org>
Content-Type: text/plain; charset=utf-8
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=351336
gtkmm | general | Ver: 2.4.x
------- Comment #4 from Murray Cumming 2006-09-09 19:13 UTC -------
OK. Let's apply this when we branch.
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 2
Date: Sun, 10 Sep 2006 11:17:30 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 354556] wrap g_get_user_x_dir()
functions
To: gtkmm-forge lists sourceforge net
Message-ID: <20060910111730 322556C40A4 box gnome org>
Content-Type: text/plain; charset=utf-8
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=354556
glibmm | general | Ver: 2.12.x
Murray Cumming changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |murrayc murrayc com
------- Comment #3 from Murray Cumming 2006-09-10 11:16 UTC -------
Looks good. Feel free to branch glibmm and commit this to HEAD:
1.
Let's keep an eye on this change, to be sure that it doesn't force a docs
rebuild when building from tarballs:
html/index.html: $(doxygen_configfile_source) $(beautify_docs_source)
$(top_srcdir)/glib/glibmm/*.h
2.
They would be since 2.14, not since 2.12.
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 3
Date: Sun, 10 Sep 2006 11:31:59 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 353242] Optionally disable Atk
(--enable-api-atk=no)
To: gtkmm-forge lists sourceforge net
Message-ID: <20060910113159 938756C409E box gnome org>
Content-Type: text/plain; charset=utf-8
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=353242
gtkmm | general | Ver: unspecified
Murray Cumming changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |murrayc murrayc com
------- Comment #4 from Murray Cumming 2006-09-10 11:31 UTC -------
Thanks.
Instead of this:
_WRAP_METHOD(Glib::RefPtr<Atk::Object> get_popup_accessible(),
gtk_combo_box_get_popup_accessible, atk_only)
I would prefer this:
_WRAP_METHOD(Glib::RefPtr<Atk::Object> get_popup_accessible(),
gtk_combo_box_get_popup_accessible, ifdef GTKMM_ATKMM_API_DISABLED)
That would be more generic so we might be able to use it for other things.
You should be able to look at the optional "deprecated" option for a clue about
how to get the extra argument. For instance, from WrapParser:
elsif($argRef =~ /^deprecated(.*)/) #If deprecated is at the start.
{
$$objCfunc{deprecated} = "deprecated";
if($1 ne "")
{
$deprecation_docs = string_unquote(string_trim($1));
}
}
Note also that I'd prefer to use a GTKMM_ prefix for gtkmm. The use of an ATK_
prefix suggests that it was defined by ATK.
If possible, I'd like to keep the --enable-optional-api changes in a separate
patch.
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 4
Date: Sun, 10 Sep 2006 14:27:02 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 354556] wrap g_get_user_x_dir()
functions
To: gtkmm-forge lists sourceforge net
Message-ID: <20060910142702 AB29D6C40A7 box gnome org>
Content-Type: text/plain; charset=utf-8
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=354556
glibmm | general | Ver: 2.12.x
------- Comment #4 from jonner 2006-09-10 14:26 UTC -------
> 1.
> Let's keep an eye on this change, to be sure that it doesn't force a docs
> rebuild when building from tarballs:
> html/index.html: $(doxygen_configfile_source) $(beautify_docs_source)
> $(top_srcdir)/glib/glibmm/*.h
Ahh, good point. I hadn't thought of that.
> 2.
> They would be since 2.14, not since 2.12.
I've branched for 2.12. I'll make that change before committing.
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 5
Date: Sun, 10 Sep 2006 14:41:49 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 354556] wrap g_get_user_x_dir()
functions
To: gtkmm-forge lists sourceforge net
Message-ID: <20060910144149 723AD6C40AB box gnome org>
Content-Type: text/plain; charset=utf-8
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=354556
glibmm | general | Ver: 2.12.x
jonner changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #72285|none |committed
Flag| |
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Comment #5 from jonner 2006-09-10 14:41 UTC -------
2006-09-05 Jonathon Jongsma <jonathon jongsma gmail com>
* docs/reference/Makefile.am: rebuild docs when a .h files changes in
glib/glibmm
* glib/glibmm/miscutils.cc:
* glib/glibmm/miscutils.h: wrap g_get_user_data_dir(),
g_get_user_config_dir(), and g_get_user_cache_dir()
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 6
Date: Mon, 11 Sep 2006 17:08:25 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 353242] Optionally disable Atk
(--enable-api-atk=no)
To: gtkmm-forge lists sourceforge net
Message-ID: <20060911170825 C4A3B6C40C6 box gnome org>
Content-Type: text/plain; charset=utf-8
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=353242
gtkmm | general | Ver: unspecified
------- Comment #5 from Johannes Schmid 2006-09-11 17:07 UTC -------
Hi Murray!
Both things are no real problem, I hope to get it ready by the end of the week.
Do you want the "ifdef" in the wrap-command or would GTKMM_ATKMM_API_DISABLED
alone be ok?
Regards,
Johannes
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 7
Date: Mon, 11 Sep 2006 17:14:02 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 352226] gtkmm-2.10.0 build problem with
gcc-3.3.6
To: gtkmm-forge lists sourceforge net
Message-ID: <20060911171402 2F12C6C40C8 box gnome org>
Content-Type: text/plain; charset=utf-8
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=352226
gtkmm | build | Ver: 2.10.x
Murray Cumming changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |murrayc murrayc com
------- Comment #2 from Murray Cumming 2006-09-11 17:13 UTC -------
Does it work with "" instead of Glib::ustring()? That's a bit cleaner.
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
Message: 8
Date: Mon, 11 Sep 2006 17:29:32 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 353242] Optionally disable Atk
(--enable-api-atk=no)
To: gtkmm-forge lists sourceforge net
Message-ID: <20060911172932 1B8586C40C6 box gnome org>
Content-Type: text/plain; charset=utf-8
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=353242
gtkmm | general | Ver: unspecified
------- Comment #6 from Murray Cumming 2006-09-11 17:28 UTC -------
I don't quite understand. Can you give me two alternative lines of code to
choose from?
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
------------------------------
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
------------------------------
_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
End of Gtkmm-forge Digest, Vol 4, Issue 2
*****************************************
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]