mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-26 09:30:04 +01:00
Merge branch 'speling' into 'master'
Fix spelling mistakes detected by Debian's Lintian tool See merge request GNOME/glib!354
This commit is contained in:
commit
88a1188fc1
@ -1853,7 +1853,7 @@ FUNC_NO_LOCALTIME_R="the 'g_date_set_time' function will not be MT-safe
|
||||
|
||||
AIX_COMPILE_INFO="AIX's C compiler needs to be called by a different name, when
|
||||
linking threaded applications. As GLib cannot do that
|
||||
automatically, you will get an linkg error everytime you are
|
||||
automatically, you will get an linking error every time you are
|
||||
not using the right compiler. In that case you have to relink
|
||||
with the right compiler. Ususally just '_r' is appended
|
||||
to the compiler name."
|
||||
|
@ -869,7 +869,7 @@ my_app_frobber_proxy_new_sync (GDBusConnection *connection,
|
||||
subclass. For example, to handle
|
||||
<function>HelloWorld()</function> method invocations, set the
|
||||
vfunc for <function>handle_hello_hello_world()</function> in the
|
||||
<type>MyAppFrobberIface</type> structure. Similary, to handle
|
||||
<type>MyAppFrobberIface</type> structure. Similarly, to handle
|
||||
the <parameter>net.Corp.MyApp.Frobber:Verbose</parameter>
|
||||
property override the <parameter>:verbose</parameter> #GObject
|
||||
property from the subclass. To emit a signal, use
|
||||
@ -941,7 +941,7 @@ on_handle_hello_world (MyAppFrobber *interface,
|
||||
received. The queue is drained in an idle handler (which is called from the
|
||||
<link linkend="g-main-context-push-thread-default">thread-default main loop</link>
|
||||
of the thread where the skeleton object was
|
||||
contructed) and will cause emissions of the <ulink
|
||||
constructed) and will cause emissions of the <ulink
|
||||
url="http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties">org.freedesktop.DBus.Properties::PropertiesChanged</ulink>
|
||||
signal with all the properties that have changed. Use
|
||||
g_dbus_interface_skeleton_flush() or
|
||||
|
@ -374,7 +374,7 @@
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>-D</option>, <option>--direct=<replaceable>LOCATION</replaceable></option></term>
|
||||
<listitem><para>Monitor the file directly. This allows to capture changes made via hardlinks.</para></listitem>
|
||||
<listitem><para>Monitor the file directly. This allows changes made via hardlinks to be captured.</para></listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>-s</option>, <option>--silent=<replaceable>LOCATION</replaceable></option></term>
|
||||
@ -599,7 +599,7 @@
|
||||
<arg choice="plain" rep="repeat"><replaceable>VALUE</replaceable></arg>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Allows to set a file attribute on a file.</para>
|
||||
<para>Sets a file attribute on a file.</para>
|
||||
<para>File attributes can be specified with their GIO name, e.g
|
||||
standard::icon. Note that not all GIO file attributes are writable.
|
||||
Use the --query-writable option of the info command to list
|
||||
|
@ -253,7 +253,7 @@ will be appended to the template's <literal>file-tail</literal> section.
|
||||
<varlistentry>
|
||||
<term><option>--eprod</option> <replaceable>TEXT</replaceable></term>
|
||||
<listitem><para>
|
||||
Emits <replaceable>TEXT</replaceable> everytime an enum is encountered
|
||||
Emits <replaceable>TEXT</replaceable> every time an enum is encountered
|
||||
in the input files.
|
||||
</para></listitem>
|
||||
</varlistentry>
|
||||
@ -333,7 +333,7 @@ where section may be <literal>file-header</literal>,
|
||||
<varlistentry>
|
||||
<term><option>--identifier-prefix</option> <replaceable>PREFIX</replaceable></term>
|
||||
<listitem><para>
|
||||
Indicates what portion of the enum name should be intepreted as the
|
||||
Indicates what portion of the enum name should be interpreted as the
|
||||
prefix (eg, the "<literal>Gtk</literal>" in
|
||||
"<literal>GtkDirectionType</literal>"). Normally this will be figured
|
||||
out automatically, but you may need to override the default if your
|
||||
|
@ -3088,7 +3088,7 @@ static volatile guint _global_filter_id = 1;
|
||||
* dispatched anywhere else - not even the standard dispatch machinery
|
||||
* (that API such as g_dbus_connection_signal_subscribe() and
|
||||
* g_dbus_connection_send_message_with_reply() relies on) will see the
|
||||
* message. Similary, if a filter consumes an outgoing message, the
|
||||
* message. Similarly, if a filter consumes an outgoing message, the
|
||||
* message will not be sent to the other peer.
|
||||
*
|
||||
* If @user_data_free_func is non-%NULL, it will be called (in the
|
||||
|
@ -115,7 +115,7 @@ attribute_type_to_string (GFileAttributeType type)
|
||||
case G_FILE_ATTRIBUTE_TYPE_OBJECT:
|
||||
return "object";
|
||||
default:
|
||||
return "uknown type";
|
||||
return "unknown type";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -621,7 +621,7 @@ _g_mount_get_for_mount_path (const gchar *mount_path,
|
||||
* also listen for the "removed" signal on the returned object
|
||||
* and give up its reference when handling that signal
|
||||
*
|
||||
* Similary, if implementing g_volume_monitor_adopt_orphan_mount(),
|
||||
* Similarly, if implementing g_volume_monitor_adopt_orphan_mount(),
|
||||
* the implementor must take a reference to @mount and return it in
|
||||
* its g_volume_get_mount() implemented. Also, the implementor must
|
||||
* listen for the "unmounted" signal on @mount and give up its
|
||||
|
@ -3360,8 +3360,8 @@ expand_exec_line (const gchar *exec_fmt,
|
||||
* @stamp: (out) (optional): return location for the last registration time, or %NULL
|
||||
* @error: return location for a #GError, or %NULL
|
||||
*
|
||||
* Gets the registration informations of @app_name for the bookmark for
|
||||
* @uri. See g_bookmark_file_set_app_info() for more informations about
|
||||
* Gets the registration information of @app_name for the bookmark for
|
||||
* @uri. See g_bookmark_file_set_app_info() for more information about
|
||||
* the returned data.
|
||||
*
|
||||
* The string returned in @app_exec must be freed.
|
||||
|
@ -500,7 +500,7 @@ usage (gboolean just_version)
|
||||
g_print ("Help Options:\n");
|
||||
g_print (" -h, --help Show this help message\n\n");
|
||||
g_print ("Utility Options:\n");
|
||||
g_print (" -v, --version Print version informations\n");
|
||||
g_print (" -v, --version Print version information\n");
|
||||
g_print (" --g-fatal-warnings Make warnings fatal (abort)\n");
|
||||
g_print (" -k, --keep-going Continue running after tests failed\n");
|
||||
g_print (" -l List paths of available test cases\n");
|
||||
|
@ -99,7 +99,7 @@ static gint
|
||||
help (gchar *arg)
|
||||
{
|
||||
g_fprintf (stderr, "usage: gobject-query <qualifier> [-r <type>] [-{i|b} \"\"] [-s #] [-{h|x|y}]\n");
|
||||
g_fprintf (stderr, " -r specifiy root type\n");
|
||||
g_fprintf (stderr, " -r specify root type\n");
|
||||
g_fprintf (stderr, " -n don't descend type tree\n");
|
||||
g_fprintf (stderr, " -h guess what ;)\n");
|
||||
g_fprintf (stderr, " -b specify indent string\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user