[gnome-software] trivial: Build broken - Use GFile correctly
- From: Robert Ancell <rancell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software] trivial: Build broken - Use GFile correctly
- Date: Mon, 25 Apr 2016 09:40:49 +0000 (UTC)
commit 24d45a61d723f223b03b0552369977ee8724eec0
Author: Robert Ancell <robert ancell canonical com>
Date: Mon Apr 25 11:40:24 2016 +0200
trivial: Build broken - Use GFile correctly
src/plugins/gs-plugin-xdg-app.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/src/plugins/gs-plugin-xdg-app.c b/src/plugins/gs-plugin-xdg-app.c
index 0d008dd..3f58e0b 100644
--- a/src/plugins/gs-plugin-xdg-app.c
+++ b/src/plugins/gs-plugin-xdg-app.c
@@ -1377,7 +1377,6 @@ gs_plugin_file_to_app (GsPlugin *plugin,
g_autoptr(GBytes) appstream_gz = NULL;
g_autoptr(GBytes) icon_data = NULL;
g_autoptr(GBytes) metadata = NULL;
- g_autoptr(GFile) file = NULL;
g_autoptr(GsApp) app = NULL;
g_autoptr(XdgAppBundleRef) xref_bundle = NULL;
const gchar *mimetypes[] = {
@@ -1392,7 +1391,6 @@ gs_plugin_file_to_app (GsPlugin *plugin,
return TRUE;
/* load bundle */
- file = g_file_new_for_path (filename);
xref_bundle = xdg_app_bundle_ref_new (file, error);
if (xref_bundle == NULL) {
g_prefix_error (error, "error loading bundle: ");
@@ -1484,7 +1482,7 @@ gs_plugin_file_to_app (GsPlugin *plugin,
/* set the source so we can install it higher up */
- gs_app_add_source (app, filename);
+ gs_app_add_source (app, g_file_get_path (file));
/* not quite true: this just means we can update this specific app */
if (xdg_app_bundle_ref_get_origin (xref_bundle))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]