summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2011-07-12 12:34:48 +0200
committerMurray Cumming <murrayc@murrayc.com>2011-07-12 12:34:48 +0200
commit339c8f73f2a312fbb4f47cf4b82fe275fffa3ba7 (patch)
tree3c784b1e1563f281730801a0b7d8477b0cb18701 /ChangeLog
parent5cac804b564dc65211ca6dff427bd8b7e2eb6a40 (diff)
downloadglibmm-339c8f73f2a312fbb4f47cf4b82fe275fffa3ba7.tar.gz
AppInfo::launch(): Correct the parameter type.
* gio/src/appinfo.hg: g_app_info_launch() takes a GList of GFile, not of strings. Also use a vector instead of a ListHandle, as per our new convention. It is acceptable to change this API/ABI because this method could never possibly have been used by any application without crashes, so this can't make anything worse. Also add an overload without the launch_context parameter, using the new {?} syntax. Luckily we did not implement the vfuncs, or maybe we disabled them because of the crashes.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e2bc2fa..044aa6b3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2011-07-12 Murray Cumming <murrayc@murrayc.com>
+ AppInfo::launch(): Correct the parameter type.
+
+ * gio/src/appinfo.hg: g_app_info_launch() takes a GList of GFile, not of
+ strings. Also use a vector instead of a ListHandle, as per our new convention.
+ It is acceptable to change this API/ABI because this method could never
+ possibly have been used by any application without crashes, so this can't
+ make anything worse.
+ Also add an overload without the launch_context parameter, using the new {?}
+ syntax.
+ Luckily we did not implement the vfuncs, or maybe we disabled them because of
+ the crashes.
+
+2011-07-12 Murray Cumming <murrayc@murrayc.com>
+
AppInfo::launch_uris(): Corrected (with deprecation) and add overload.
* gio/src/appinfo.[hg|ccg]: Deprecate the existing method and add one that