mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 01:55:39 +00:00
5f4ee87b5c
[Expanded from patch by John Luke attached to bug.] * gdk/Gdk.metadata : rename Atom.Name to GetName so it props. * gdk/Atom.custom : new string cast operator. * sample/TestDnd.cs : fix Atom.Name reference * sample/GtkDemo/DemoEditableCell.cs : fix a ListStore.Remove ref broken by last commit. [Fixes #57721] svn path=/trunk/gtk-sharp/; revision=26208
10 lines
102 B
Plaintext
10 lines
102 B
Plaintext
//
|
|
// Atom.custom
|
|
//
|
|
|
|
public static implicit operator string (Gdk.Atom atom)
|
|
{
|
|
return atom.Name;
|
|
}
|
|
|