diff options
-rw-r--r-- | specs/CH01.xml | 6 | ||||
-rw-r--r-- | specs/CH04.xml | 3 | ||||
-rw-r--r-- | specs/CH06.xml | 2 | ||||
-rw-r--r-- | specs/CH09.xml | 12 | ||||
-rw-r--r-- | specs/CH11.xml | 2 | ||||
-rw-r--r-- | specs/CH12.xml | 26 |
6 files changed, 30 insertions, 21 deletions
diff --git a/specs/CH01.xml b/specs/CH01.xml index e208a3c..579e1ff 100644 --- a/specs/CH01.xml +++ b/specs/CH01.xml @@ -1757,8 +1757,8 @@ static XtResource resources[] = { static void ClassInitialize(void); static void Initialize(Widget, Widget, ArgList, Cardinal*); static void Realize(Widget, XtValueMask*, XSetWindowAttributes*); -static void SetText(); -static void GetText(); +static void SetText(Widget, String); +static void GetText(Widget); . . . @@ -2705,7 +2705,7 @@ header file for a widget class should provide a symbolic constant for subclasses to use to initialize this field. The <emphasis remap='I'>record_size</emphasis> field value includes the four common header fields and should normally be initialized with -<function>sizeof ().</function> +<function>sizeof().</function> </para> <para> diff --git a/specs/CH04.xml b/specs/CH04.xml index e449e1b..b891d78 100644 --- a/specs/CH04.xml +++ b/specs/CH04.xml @@ -903,9 +903,6 @@ resource list are: <entry>XtCUrgency</entry> <entry>XtRBoolean</entry> </row> - <row> - <entry>_</entry> - </row> </tbody> </tgroup> </informaltable> diff --git a/specs/CH06.xml b/specs/CH06.xml index f0e45f6..f80f2e2 100644 --- a/specs/CH06.xml +++ b/specs/CH06.xml @@ -444,7 +444,7 @@ For definition and behavior of and <function>Opposite</function>, <olink targetdoc='libX11' targetptr='Configuring_Windows' >BLAH</olink> -in <olink targetptr='libX11' targetdoc='libX11'>Xlib — C Language X Interface.</olink>. +in <olink targetptr='libX11' targetdoc='libX11'>Xlib — C Language X Interface</olink>. <function>XtSMDontChange</function> indicates that the widget wants its current stacking order preserved. </para> diff --git a/specs/CH09.xml b/specs/CH09.xml index 24450d4..16be36b 100644 --- a/specs/CH09.xml +++ b/specs/CH09.xml @@ -1552,7 +1552,7 @@ is required in a different locale. <para> The String-to-Gravity conversion accepts string values that are the names of window and bit gravities and their numerical equivalents, -as defined in <emphasis remap='I'>Xlib — C Language X Interface.</emphasis>: +as defined in <emphasis remap='I'>Xlib — C Language X Interface</emphasis>: <function>ForgetGravity</function>, <function>UnmapGravity</function>, <function>NorthWestGravity</function>, @@ -1756,7 +1756,7 @@ Type converters use pointers to structures (defined in <filename class="headerfile"><X11/Xresource.h>;</filename> see <olink targetdoc='libX11' targetptr='Creating_and_Storing_Databases'>Section 15.4</olink> in -<olink targetdoc='libX11' targetptr='libX11'>Xlib — C Language X Interface.</olink>) +<olink targetdoc='libX11' targetptr='libX11'>Xlib — C Language X Interface</olink>) for input and output values. </para> <programlisting> @@ -2667,8 +2667,8 @@ address of the base of the widget into args[0], and use that in the routine. They should pass in the actual values on which the conversion depends. By keeping the dependencies of the conversion procedure specific, it is more likely that -subsequent conversions will find what they need in the con‐ -version cache. This way the cache is smaller and has fewer +subsequent conversions will find what they need in the conversion cache. +This way the cache is smaller and has fewer and more widely applicable entries. </para> <para> @@ -2691,11 +2691,11 @@ list specified in the call. </para> <para> If the <function>XtConvertArgProc</function> modifies the resource database, the -changes affect any in‐progress widget creation, +changes affect any in-progress widget creation, <xref linkend='XtGetApplicationResources' xrefstyle='select: title'/>, or <xref linkend='XtGetSubresources' xrefstyle='select: title'/> -in an implementation‐defined manner; +in an implementation-defined manner; however, insertion of new entries or changes to existing entries are allowed and will not directly cause an error. diff --git a/specs/CH11.xml b/specs/CH11.xml index cdcb899..8dc2301 100644 --- a/specs/CH11.xml +++ b/specs/CH11.xml @@ -3235,7 +3235,7 @@ rather than processing individual rectangles. For further information about regions, see <olink targetdoc='libX11' targetptr='Manipulating_Regions'>Manipulating Regions</olink> in <olink targetdoc='libX11' targetptr='libX11'> -Xlib — C Language X Interface.</olink>. +Xlib — C Language X Interface</olink>. </para> <para> diff --git a/specs/CH12.xml b/specs/CH12.xml index 70bc84f..011a98b 100644 --- a/specs/CH12.xml +++ b/specs/CH12.xml @@ -274,15 +274,27 @@ The WidgetClass arguments to the following procedures may be or any subclass: </para> +<itemizedlist spacing='compact'> +<listitem> <para> -<emphasis role='strong'>XtInitializeWidgetClass</emphasis>, -<emphasis role='strong'>XtCreateWidget</emphasis>, -<emphasis role='strong'>XtVaCreateWidget</emphasis> -<emphasis role='strong'>XtIsSubclass</emphasis>, -<emphasis role='strong'>XtCheckSubclass</emphasis> -<emphasis role='strong'>XtGetResourceList</emphasis>, -<emphasis role='strong'>XtGetConstraintResourceList</emphasis> +<xref linkend='XtInitializeWidgetClass' xrefstyle='select: title'/>, +<xref linkend='XtCreateWidget' xrefstyle='select: title'/>, +<xref linkend='XtVaCreateWidget' xrefstyle='select: title'/> </para> +</listitem> +<listitem> +<para> +<xref linkend='XtIsSubclass' xrefstyle='select: title'/>, +<xref linkend='XtCheckSubclass' xrefstyle='select: title'/> +</para> +</listitem> +<listitem> +<para> +<xref linkend='XtGetResourceList' xrefstyle='select: title'/>, +<xref linkend='XtGetConstraintResourceList' xrefstyle='select: title'/> +</para> +</listitem> +</itemizedlist> <para> The Widget arguments to the following procedures may be of class |