зеркало из
1
0
Форкнуть 0

add an override for ShowUri that doesn't require a timestamp, as getting the current timestamp is kinda hackish

This commit is contained in:
Stephane Delcroix 2009-06-16 11:21:58 +02:00
Родитель 7071df74ef
Коммит 047b3f51a4
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -37,5 +37,10 @@ namespace GtkBeans {
if (error != IntPtr.Zero) throw new GLib.GException (error); if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret; return ret;
} }
public static bool ShowUri (Gdk.Screen screen, string uri)
{
return ShowUri (screen, uri, Gdk.EventHelper.GetTime (new Gdk.Event(IntPtr.Zero)));
}
} }
} }