summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-01-26 11:28:10 +0100
committerraveit65 <[email protected]>2021-02-04 18:23:39 +0100
commit9416495926b8679b7709731584e77a740959d800 (patch)
tree85f04b1429daabf25c18f74a80d690ee34f7b6ad
parent620603885fc680c0a46fd090ae284fb2d631302a (diff)
downloadmate-panel-9416495926b8679b7709731584e77a740959d800.tar.bz2
mate-panel-9416495926b8679b7709731584e77a740959d800.tar.xz
build: Use PACKAGE_URL variable
-rw-r--r--applets/clock/clock.c2
-rw-r--r--applets/fish/fish.c2
-rw-r--r--applets/wncklet/showdesktop.c4
-rw-r--r--applets/wncklet/window-list.c2
-rw-r--r--applets/wncklet/window-menu.c4
-rw-r--r--applets/wncklet/workspace-switcher.c2
-rw-r--r--configure.ac2
7 files changed, 9 insertions, 9 deletions
diff --git a/applets/clock/clock.c b/applets/clock/clock.c
index abc14c68..15c1e0cd 100644
--- a/applets/clock/clock.c
+++ b/applets/clock/clock.c
@@ -3403,7 +3403,7 @@ static void display_about_dialog(GtkAction* action, ClockData* cd)
"logo-icon-name", CLOCK_ICON,
"translator-credits", _("translator-credits"),
"version", VERSION,
- "website", "http://mate-desktop.org/",
+ "website", PACKAGE_URL,
NULL);
}
diff --git a/applets/fish/fish.c b/applets/fish/fish.c
index 551fdcb3..2f62d066 100644
--- a/applets/fish/fish.c
+++ b/applets/fish/fish.c
@@ -561,7 +561,7 @@ static void display_about_dialog(GtkAction* action, FishApplet* fish)
"logo-icon-name", FISH_ICON,
"translator-credits", _("translator-credits"),
"version", VERSION, /* "3.4.7.4ac19" */
- "website", "http://mate-desktop.org/",
+ "website", PACKAGE_URL,
NULL);
g_free(descr);
diff --git a/applets/wncklet/showdesktop.c b/applets/wncklet/showdesktop.c
index f14e66b5..aabc1a63 100644
--- a/applets/wncklet/showdesktop.c
+++ b/applets/wncklet/showdesktop.c
@@ -22,7 +22,7 @@
*/
#ifdef HAVE_CONFIG_H
- #include <config.h>
+#include <config.h>
#endif
#include <glib/gi18n.h>
@@ -510,7 +510,7 @@ static void display_about_dialog(GtkAction* action, ShowDesktopData* sdd)
"logo-icon-name", SHOW_DESKTOP_ICON,
"translator-credits", _("translator-credits"),
"version", VERSION,
- "website", "http://www.mate-desktop.org/",
+ "website", PACKAGE_URL,
NULL);
}
diff --git a/applets/wncklet/window-list.c b/applets/wncklet/window-list.c
index dd065466..ce3ddbb4 100644
--- a/applets/wncklet/window-list.c
+++ b/applets/wncklet/window-list.c
@@ -921,7 +921,7 @@ static void display_about_dialog(GtkAction* action, TasklistData* tasklist)
"logo-icon-name", WINDOW_LIST_ICON,
"translator-credits", _("translator-credits"),
"version", VERSION,
- "website", "http://www.mate-desktop.org/",
+ "website", PACKAGE_URL,
NULL);
}
diff --git a/applets/wncklet/window-menu.c b/applets/wncklet/window-menu.c
index 4985fa79..804898d8 100644
--- a/applets/wncklet/window-menu.c
+++ b/applets/wncklet/window-menu.c
@@ -26,7 +26,7 @@
*/
#ifdef HAVE_CONFIG_H
- #include <config.h>
+#include <config.h>
#endif
#include <string.h>
@@ -94,7 +94,7 @@ static void window_menu_about(GtkAction* action, WindowMenu* window_menu)
"logo-icon-name", WINDOW_MENU_ICON,
"translator-credits", _("translator-credits"),
"version", VERSION,
- "website", "http://www.mate-desktop.org/",
+ "website", PACKAGE_URL,
NULL);
}
diff --git a/applets/wncklet/workspace-switcher.c b/applets/wncklet/workspace-switcher.c
index ba126020..22b473bd 100644
--- a/applets/wncklet/workspace-switcher.c
+++ b/applets/wncklet/workspace-switcher.c
@@ -703,7 +703,7 @@ static void display_about_dialog(GtkAction* action, PagerData* pager)
"logo-icon-name", WORKSPACE_SWITCHER_ICON,
"translator-credits", _("translator-credits"),
"version", VERSION,
- "website", "http://www.mate-desktop.org/",
+ "website", PACKAGE_URL,
NULL);
}
diff --git a/configure.ac b/configure.ac
index 0673a7b6..bf476cea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([mate-panel], [1.25.2], [https://github.com/mate-desktop/mate-panel/issues],
- [mate-panel], [http://www.mate-desktop.org])
+ [mate-panel], [https://mate-desktop.org])
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz tar-ustar -Wno-portability check-news])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])