mirror of
				https://github.com/Ryujinx/GtkSharp.git
				synced 2025-11-04 09:34:53 +00:00 
			
		
		
		
	2004-08-30 Tambet Ingo <tambet@ximian.com>
* glib/ListBase.cs : indexing bugfix for CopyTo. svn path=/trunk/gtk-sharp/; revision=33038
This commit is contained in:
		
							parent
							
								
									237c8ca92d
								
							
						
					
					
						commit
						b6bd5a901a
					
				| 
						 | 
					@ -1,3 +1,7 @@
 | 
				
			||||||
 | 
					2004-08-30  Tambet Ingo  <tambet@ximian.com>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						* glib/ListBase.cs : indexing bugfix for CopyTo.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
2004-08-28  John Luke  <john.luke@gmail.com>
 | 
					2004-08-28  John Luke  <john.luke@gmail.com>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	* gdk/Gdk.metadata: change Gdk.KeyVal name return-type from
 | 
						* gdk/Gdk.metadata: change Gdk.KeyVal name return-type from
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -129,7 +129,7 @@ namespace GLib {
 | 
				
			||||||
			object[] orig = new object[Count];
 | 
								object[] orig = new object[Count];
 | 
				
			||||||
			int i = 0;
 | 
								int i = 0;
 | 
				
			||||||
			foreach (object o in this)
 | 
								foreach (object o in this)
 | 
				
			||||||
				orig[i] = o;
 | 
									orig[i++] = o;
 | 
				
			||||||
			
 | 
								
 | 
				
			||||||
			orig.CopyTo (array, index); 
 | 
								orig.CopyTo (array, index); 
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue