mirror of
				https://github.com/Ryujinx/GtkSharp.git
				synced 2025-11-04 13:04:53 +00:00 
			
		
		
		
	VariantType: Fix typo
This commit is contained in:
		
							parent
							
								
									4158bc99f8
								
							
						
					
					
						commit
						c271fe235b
					
				| 
						 | 
				
			
			@ -114,11 +114,11 @@ namespace GLib {
 | 
			
		|||
		}
 | 
			
		||||
 | 
			
		||||
		[DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]
 | 
			
		||||
		static extern bool g_variant_type_equals (IntPtr a, IntPtr b);
 | 
			
		||||
		static extern bool g_variant_type_equal (IntPtr a, IntPtr b);
 | 
			
		||||
 | 
			
		||||
		public override bool Equals (object o)
 | 
			
		||||
		{
 | 
			
		||||
			return (o is VariantType) && g_variant_type_equals (Handle, (o as VariantType).Handle);
 | 
			
		||||
			return (o is VariantType) && g_variant_type_equal (Handle, (o as VariantType).Handle);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		[DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue