mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 18:15:36 +00:00
2004-11-05 Mike Kestner <mkestner@ximian.com>
* updater/updater.cs : fix for recent corlib bugfix. Thanks to Dan Winship for identifying the solution. svn path=/trunk/gtk-sharp/; revision=35721
This commit is contained in:
parent
c6d0343586
commit
2b704d7d25
|
@ -1,3 +1,8 @@
|
|||
2004-11-05 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* updater/updater.cs : fix for recent corlib bugfix. Thanks
|
||||
to Dan Winship for identifying the solution.
|
||||
|
||||
2004-10-28 Dan Winship <danw@novell.com>
|
||||
|
||||
* en/Gdk/Pixbuf.xml
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
*.exe
|
||||
*.dll
|
||||
|
|
|
@ -751,8 +751,9 @@ class Updater {
|
|||
XmlElement AddDocsParamNode (XmlDocument document, ParameterInfo parameter)
|
||||
{
|
||||
Type param_type = parameter.ParameterType;
|
||||
Type element_type = param_type.GetElementType();
|
||||
XmlElement see_node = document.CreateElement ("see");
|
||||
see_node.SetAttribute ("cref", "T:" + param_type.GetElementType().ToString());
|
||||
see_node.SetAttribute ("cref", "T:" + (element_type == null ? param_type.ToString() : element_type.ToString()));
|
||||
|
||||
XmlElement param = document.CreateElement ("param");
|
||||
param.SetAttribute ("name", parameter.Name);
|
||||
|
|
Loading…
Reference in a new issue