[gtk-web] Update the links in the hello world page
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk-web] Update the links in the hello world page
- Date: Thu, 19 Aug 2021 17:31:58 +0000 (UTC)
commit 9535fa1cdd93b23e46ec0fc011ccbdcf44ea5116
Author: Emmanuele Bassi <ebassi gmail com>
Date: Thu Aug 19 17:31:57 2021 +0000
Update the links in the hello world page
Remove links to the old developer.gnome.org website, and to the HowDoI pages on the wiki.
_docs/getting-started/hello-world.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/_docs/getting-started/hello-world.md b/_docs/getting-started/hello-world.md
index 940d056..dde848e 100644
--- a/_docs/getting-started/hello-world.md
+++ b/_docs/getting-started/hello-world.md
@@ -98,7 +98,7 @@ initialized using `gtk_application_new()`.
When creating a `GtkApplication` you need to pick an application identifier
(a name) and input to `gtk_application_new()` as parameter. For this
example, `org.gtk.example` is used but for choosing an identifier for your
-application see [this guide](https://wiki.gnome.org/HowDoI/ChooseApplicationID).
+application see [this guide](https://developer.gnome.org/documentation/tutorials/application-id.html).
Lastly `gtk_application_new()` takes a `GApplicationFlags` argument, which
control some of the capabilities that your application has, like being able
to open files specified on the command line, or parsing command line options.
@@ -128,7 +128,7 @@ casting window via the usual C cast operator `(GtkWindow *)`, `window` should
be cast using the `GTK_WINDOW()` macro. `GTK_WINDOW()` will perform a run
time check if the pointer is an instance of the `GtkWindow` class, before
casting, and emit a warning if the check fails. More information about this
-convention can be found [here](https://developer.gnome.org/gobject/stable/gtype-conventions.html).
+convention can be found [here](https://docs.gtk.org/gobject/concepts.html#conventions).
Finally the window size is set using `gtk_window_set_default_size()` and the
window is then shown by GTK via `gtk_window_present()`.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]