From 0c10536d2e4c5e5062614f2f5cf182312fd1ff90 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 15 Dec 2006 04:03:07 +0000 Subject: [PATCH] s/Gnome/GNOME/g (#352156, Guillaume Desmottes) 2006-12-14 Matthias Clasen * gobject/*.xml: s/Gnome/GNOME/g (#352156, Guillaume Desmottes) --- docs/reference/ChangeLog | 2 ++ docs/reference/gobject/tut_gobject.xml | 2 +- docs/reference/gobject/tut_gsignal.xml | 4 ++-- docs/reference/gobject/tut_howto.xml | 8 ++++---- docs/reference/gobject/tut_intro.xml | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 397b1328f..922f50301 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,5 +1,7 @@ 2006-12-14 Matthias Clasen + * gobject/*.xml: s/Gnome/GNOME/g (#352156, Guillaume Desmottes) + * glib/tmpl/keyfile.sgml: Clarify the behaviour wrt. to duplicate keys and groups. diff --git a/docs/reference/gobject/tut_gobject.xml b/docs/reference/gobject/tut_gobject.xml index d928595ba..01c7a9841 100644 --- a/docs/reference/gobject/tut_gobject.xml +++ b/docs/reference/gobject/tut_gobject.xml @@ -17,7 +17,7 @@ Generic per-object properties with set/get function pairs Easy use of signals - All the GTK+ objects and all of the objects in Gnome libraries which use the GLib type + All the GTK+ objects and all of the objects in GNOME libraries which use the GLib type system inherit from GObject which is why it is important to understand the details of how it works. diff --git a/docs/reference/gobject/tut_gsignal.xml b/docs/reference/gobject/tut_gsignal.xml index 8dc7d85a5..59e27b9c1 100644 --- a/docs/reference/gobject/tut_gsignal.xml +++ b/docs/reference/gobject/tut_gsignal.xml @@ -7,7 +7,7 @@ Closures are central to the concept of asynchronous signal delivery - which is widely used throughout GTK+ and Gnome applications. A Closure is an + which is widely used throughout GTK+ and GNOME applications. A Closure is an abstraction, a generic representation of a callback. It is a small structure which contains three objects: @@ -161,7 +161,7 @@ g_cclosure_marshal_VOID__INT (GClosure *closure, This python marshaller transforms the input GValue list representing the function parameters into a Python tuple which is the equivalent structure in python (you can look in pyg_closure_marshal in pygtype.c - in the pygobject module in Gnome cvs server). + in the pygobject module in GNOME cvs server). diff --git a/docs/reference/gobject/tut_howto.xml b/docs/reference/gobject/tut_howto.xml index 6212b2bbd..f015a0040 100644 --- a/docs/reference/gobject/tut_howto.xml +++ b/docs/reference/gobject/tut_howto.xml @@ -61,7 +61,7 @@ use a dash to separate the prefix from the typename: maman-bar.h and - maman-bar.c (this is the convention used by Nautilus and most Gnome libraries). + maman-bar.c (this is the convention used by Nautilus and most GNOME libraries). use an underscore to separate the prefix from the typename: maman_bar.h and @@ -150,7 +150,7 @@ struct _MamanBar { - All of Nautilus code and a lot of Gnome libraries use private indirection members, as described + All of Nautilus code and a lot of GNOME libraries use private indirection members, as described by Herb Sutter in his Pimpl articles (see Compilation Firewalls and The Fast Pimpl Idiom @@ -1653,8 +1653,8 @@ klass->write_signal_id = Warning on signal creation and default closure - Most of the existing code I have seen up to now (in both GTK+, Gnome libraries and - many GTK+ and Gnome applications) using signals uses a small + Most of the existing code I have seen up to now (in both GTK+, GNOME libraries and + many GTK+ and GNOME applications) using signals uses a small variation of the default handler pattern I have shown in the previous section. diff --git a/docs/reference/gobject/tut_intro.xml b/docs/reference/gobject/tut_intro.xml index a353e9b60..cbd661781 100644 --- a/docs/reference/gobject/tut_intro.xml +++ b/docs/reference/gobject/tut_intro.xml @@ -2,7 +2,7 @@ Background -GObject, and its lower-level type system, GType, are used by GTK+ and most Gnome libraries to +GObject, and its lower-level type system, GType, are used by GTK+ and most GNOME libraries to provide: object-oriented C-based APIs and