diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-26 15:43:45 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-26 15:46:10 +0200 |
commit | 2869c656c1499d5667d6acdcc557c0810a6eb137 (patch) | |
tree | b9338d84ba91666906883bddaa0782293a1825ac /fiv.c | |
parent | ec713b633e0add828cdf410c10eee7b48717ba55 (diff) | |
download | fiv-2869c656c1499d5667d6acdcc557c0810a6eb137.tar.gz fiv-2869c656c1499d5667d6acdcc557c0810a6eb137.tar.xz fiv-2869c656c1499d5667d6acdcc557c0810a6eb137.zip |
Centralize the project's URL
Diffstat (limited to 'fiv.c')
-rw-r--r-- | fiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -458,7 +458,7 @@ show_about_dialog(GtkWidget *parent) GtkWidget *website = gtk_label_new(NULL); gtk_label_set_selectable(GTK_LABEL(website), TRUE); - const char *url = "https://git.janouch.name/p/" PROJECT_NAME; + const char *url = PROJECT_URL; gchar *link = g_strdup_printf("<a href='%s'>%s</a>", url, url); gtk_label_set_markup(GTK_LABEL(website), link); g_free(link); |