More paramref fixes

svn path=/trunk/gtk-sharp/; revision=16961
This commit is contained in:
Duncan Mak 2003-07-31 21:47:54 +00:00
parent 4ab065213e
commit ad589a0a64
3 changed files with 20 additions and 19 deletions

View file

@ -36,7 +36,7 @@
<summary>Get the parent <see cref="T:Glade.XML" /> widget</summary> <summary>Get the parent <see cref="T:Glade.XML" /> widget</summary>
<param name="w">a <see cref="T:Gtk.Widget" /></param> <param name="w">a <see cref="T:Gtk.Widget" /></param>
<returns> <returns>
the <see cref="T:Glade.XML" /> object that built <see paramref="w" />, or <see langword="null" /> if <see paramref="w" /> is not built from Glade the <see cref="T:Glade.XML" /> object that built <paramref name="w" />, or <see langword="null" /> if <paramref name="w" /> is not built from Glade
</returns> </returns>
<remarks></remarks> <remarks></remarks>
</Docs> </Docs>
@ -53,7 +53,7 @@
<Docs> <Docs>
<summary>Gets the name of a Glade-built widget</summary> <summary>Gets the name of a Glade-built widget</summary>
<param name="w">a <see cref="T:Gtk.Widget" /> built from Glade</param> <param name="w">a <see cref="T:Gtk.Widget" /> built from Glade</param>
<returns>the name of the <see paramref="w" /></returns> <returns>the name of the <paramref name="w" /></returns>
<remarks></remarks> <remarks></remarks>
</Docs> </Docs>
</Member> </Member>
@ -128,7 +128,7 @@
<remarks> <remarks>
<para> <para>
Connects the signals defined in the glade file with static handler methods provided by the given <see cref="T:System.Type" />, Connects the signals defined in the glade file with static handler methods provided by the given <see cref="T:System.Type" />,
<see paramref="handler_class" />. <paramref name="handler_class" />.
</para> </para>
</remarks> </remarks>
</Docs> </Docs>
@ -147,7 +147,7 @@
<param name="handler">an <see cref="T:System.Object" /> with handler methods</param> <param name="handler">an <see cref="T:System.Object" /> with handler methods</param>
<remarks> <remarks>
<para> <para>
Connects the signals definied in the glade file with static handler methods provided by the given object, <see paramref="handler" />. Connects the signals definied in the glade file with static handler methods provided by the given object, <paramref name="handler" />.
</para> </para>
</remarks> </remarks>
</Docs> </Docs>
@ -168,7 +168,7 @@
inserting it into the <see cref="T:Glade.XML" /> object's internal structures. inserting it into the <see cref="T:Glade.XML" /> object's internal structures.
</summary> </summary>
<param name="widget">the widget to set parameters on</param> <param name="widget">the widget to set parameters on</param>
<param name="info">the <see cref="T:Glade.WidgetInfo" /> structure for <see paramref="widget" /></param> <param name="info">the <see cref="T:Glade.WidgetInfo" /> structure for <paramref name="widget" /></param>
<remarks> <remarks>
<para> <para>
Sets the common parameters on <see cref="widget" />, and is responsible Sets the common parameters on <see cref="widget" />, and is responsible
@ -286,8 +286,9 @@
</Parameters> </Parameters>
<Docs> <Docs>
<summary> <summary>
This sets the packing property on container <see paramref="parent" /> of widget <see paramref="child" /> with This sets the packing property on container <paramref name="parent" /> of widget <paramref name="child" /> with
<see paramref="name" /> to <see paramref="value" /></summary> <paramref name="name" /> to <paramref name="value" />
</summary>
<param name="parent">the container widget.</param> <param name="parent">the container widget.</param>
<param name="child">the contained child</param> <param name="child">the contained child</param>
<param name="name">the name of the property</param> <param name="name">the name of the property</param>
@ -427,7 +428,7 @@
<param name="name">the beginning of a widget name</param> <param name="name">the beginning of a widget name</param>
<returns> <returns>
a <see cref="T:GLib.List" /> of widgets whose name starts a <see cref="T:GLib.List" /> of widgets whose name starts
with <see paramref="name" /></returns> with <paramref name="name" /></returns>
<remarks></remarks> <remarks></remarks>
</Docs> </Docs>
</Member> </Member>
@ -446,7 +447,7 @@
</summary> </summary>
<param name="name">the name of the widget to retrieve</param> <param name="name">the name of the widget to retrieve</param>
<returns> <returns>
the widget specified by <see paramref="name" /> or the widget specified by <paramref name="name" /> or
<see langword="null" /> if no Widgets of that name exists <see langword="null" /> if no Widgets of that name exists
</returns> </returns>
<remarks></remarks> <remarks></remarks>
@ -565,7 +566,7 @@
<param name="buffer"> <param name="buffer">
a string containing the content of the glade XML file a string containing the content of the glade XML file
</param> </param>
<param name="size">the length of <see paramref="buffer" /></param> <param name="size">the length of <paramref name="buffer" /></param>
<param name="root"> <param name="root">
the widget node to start building from, or <see langword="null" />. the widget node to start building from, or <see langword="null" />.
</param> </param>
@ -702,7 +703,7 @@
an <see cref="T:System.Reflection.Assembly" />, or an <see cref="T:System.Reflection.Assembly" />, or
<see langword="null" /> to use the current assembly <see langword="null" /> to use the current assembly
</param> </param>
<param name="resource_name">the name of the resource in <see paramref="assembly" /></param> <param name="resource_name">the name of the resource in <paramref name="assembly" /></param>
<param name="root"> <param name="root">
the widget node to start building from, or <see langword="null" />. the widget node to start building from, or <see langword="null" />.
</param> </param>

View file

@ -254,7 +254,7 @@
</Parameters> </Parameters>
<Docs> <Docs>
<summary> <summary>
Render the <see paramref="svp" /> over the <see paramref="buf" />. Render the <paramref name="svp" /> over the <paramref name="buf" />.
</summary> </summary>
<param name="buf">the canvas buffer to render over</param> <param name="buf">the canvas buffer to render over</param>
<param name="svp">the vector path to render</param> <param name="svp">the vector path to render</param>
@ -453,8 +453,8 @@
specified rectangle needs to be repainted. This function specified rectangle needs to be repainted. This function
converts the rectangle to a microtile array and feeds it converts the rectangle to a microtile array and feeds it
to <see cref="M:Gnome.Canvas.RequestRedrawUta" />. The rectangle to <see cref="M:Gnome.Canvas.RequestRedrawUta" />. The rectangle
includes <see paramref="x1" /> and <see paramref="y1" />, includes <paramref name="x1" /> and <paramref name="y1" />,
but not <see paramref="x2" /> and <see paramref="y2" />. To be used only by but not <paramref name="x2" /> and <paramref name="y2" />. To be used only by
item implementations. item implementations.
</para> </para>
</remarks> </remarks>
@ -668,7 +668,7 @@
<returns>Allocated pixel value corresponding to the specified color.</returns> <returns>Allocated pixel value corresponding to the specified color.</returns>
<remarks> <remarks>
<para> <para>
Allocates a color from <see paramref="rgba" />, the RGBA Allocates a color from <paramref name="rgba" />, the RGBA
value passed into this function. The alpha opacity value value passed into this function. The alpha opacity value
is discarded, since normal X colors do not support it. is discarded, since normal X colors do not support it.
</para> </para>

View file

@ -153,11 +153,11 @@
<Parameter Name="svp" Type="Art.SVP" /> <Parameter Name="svp" Type="Art.SVP" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>Request redraw of <see paramref="svp" /> if in aa mode, or the entire item in in xlib mode.</summary> <summary>Request redraw of <paramref name="svp" /> if in aa mode, or the entire item in in xlib mode.</summary>
<param name="svp">The svp that needs to be redrawn</param> <param name="svp">The svp that needs to be redrawn</param>
<remarks> <remarks>
<para> <para>
This item must contain <see paramref="svp" />. This item must contain <paramref name="svp" />.
</para> </para>
</remarks> </remarks>
</Docs> </Docs>
@ -230,7 +230,7 @@
<param name="y">Y coordinate to convert (input/output value).</param> <param name="y">Y coordinate to convert (input/output value).</param>
<remarks> <remarks>
<para> <para>
The parameters <see paramref="x" /> and <see paramref="y" /> The parameters <paramref name="x" /> and <paramref name="y" />
are used as both in and out parameters. are used as both in and out parameters.
</para> </para>
</remarks> </remarks>
@ -414,7 +414,7 @@
<param name="y">Y coordinate to convert (input/output value).</param> <param name="y">Y coordinate to convert (input/output value).</param>
<remarks> <remarks>
<para> <para>
The parameters <see paramref="x" /> and <see paramref="y" /> The parameters <paramref name="x" /> and <paramref name="y" />
are used as both in and out parameters. are used as both in and out parameters.
</para> </para>
</remarks> </remarks>