diff options
author | Murray Cumming <murrayc@murrayc.com> | 2011-07-12 12:34:48 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2011-07-12 12:34:48 +0200 |
commit | 339c8f73f2a312fbb4f47cf4b82fe275fffa3ba7 (patch) | |
tree | 3c784b1e1563f281730801a0b7d8477b0cb18701 /ChangeLog | |
parent | 5cac804b564dc65211ca6dff427bd8b7e2eb6a40 (diff) | |
download | glibmm-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-- | ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |