diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-01-12 10:15:27 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-01-12 10:41:33 +0100 |
commit | cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1 (patch) | |
tree | 98381a429383353603cd067b704555116939199c /fiv.c | |
parent | f1e9e47e13875782f6fd82f4861990f7ef7fad5b (diff) | |
download | fiv-cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1.tar.gz fiv-cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1.tar.xz fiv-cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1.zip |
Don't hardcode the project name in its URI
Diffstat (limited to 'fiv.c')
-rw-r--r-- | fiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -404,7 +404,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/fiv"; + const char *url = "https://git.janouch.name/p/" PROJECT_NAME; gchar *link = g_strdup_printf("<a href='%s'>%s</a>", url, url); gtk_label_set_markup(GTK_LABEL(website), link); g_free(link); |