diff options
author | Burt P <pburt0@gmail.com> | 2019-07-30 16:49:16 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2019-07-31 17:13:07 -0700 |
commit | ff8078c66110e8ea36240c47bc1f069b44d3ab99 (patch) | |
tree | a0857b9f6b253dae1e6c8bc3f5cde386e6bc7da3 /shell/report.c | |
parent | b4337288f40bcc8fdadb8807647f0e0409ebf5af (diff) |
Remove old open_url() in favor or uri_open()
See:
https://github.com/lpereira/hardinfo/pull/417#discussion_r308512774
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'shell/report.c')
-rw-r--r-- | shell/report.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/report.c b/shell/report.c index 4949c557..8649d2a9 100644 --- a/shell/report.c +++ b/shell/report.c @@ -910,7 +910,7 @@ static gboolean report_generate(ReportDialog * rd) gchar *temp; temp = g_strdup_printf("file://%s", file); - open_url(temp); + uri_open(temp); g_free(temp); } |