From 0f36039b449be81c6fc28d118319ea5db56892af Mon Sep 17 00:00:00 2001 From: Stephane Delcroix Date: Wed, 11 Feb 2009 12:34:28 +0000 Subject: [PATCH] fix the sample for API change svn path=/trunk/gtk-sharp/; revision=126577 --- sample/gio/AppInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/gio/AppInfo.cs b/sample/gio/AppInfo.cs index 58346ac78..25a385bef 100644 --- a/sample/gio/AppInfo.cs +++ b/sample/gio/AppInfo.cs @@ -23,7 +23,7 @@ namespace TestGio Console.WriteLine ("{0}:\t{1}", app_info.Name, app_info.Description); Console.WriteLine ("All installed AppInfos:"); - foreach (AppInfo appinfo in AppInfoAdapter.All) + foreach (AppInfo appinfo in AppInfoAdapter.GetAll ()) Console.WriteLine ("\t{0}: {1} ", appinfo.Name, appinfo.Executable); } }