summaryrefslogtreecommitdiff
path: root/eel
diff options
context:
space:
mode:
authorBarnabás Pőcze <pobrn@protonmail.com>2023-02-19 03:24:55 +0000
committerCorey Berla <corey@berla.me>2023-02-19 03:24:55 +0000
commit427faf9ebdb301427e29aabefdc2365c05b50355 (patch)
tree16e7854921923bbafccb72b98f6a0dba995a12c7 /eel
parent5f1680f9df8d6a62681a878975a1cec75a328a3d (diff)
downloadnautilus-427faf9ebdb301427e29aabefdc2365c05b50355.tar.gz
general: Change libadwaita include path
The libadwaita pkg-config adds `-I/usr/include/libadwaita-1` (or similar) to the compiler flags, which means that #include <adwaita.h> is sufficient, and the currently used #include <libadwaita-1/adwaita.h> is not necessary. Not only is it not necessary, but it prevents nautilus from being built with an uninstalled libadwaita build (either meson subproject or otherwise). To fix that, remove the `libadwaita-1/` prefix. The libadwaita test programs also only `#include <adwaita.h>`, and according to Debian Code Search, that is the more popular version. https://codesearch.debian.net/search?q=%23include+%3Cadwaita.h%3E&literal=1 https://codesearch.debian.net/search?q=%23include+%3Clibadwaita-1%2Fadwaita.h%3E&literal=1
Diffstat (limited to 'eel')
-rw-r--r--eel/eel-stock-dialogs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eel/eel-stock-dialogs.c b/eel/eel-stock-dialogs.c
index b9257d315..f9e44294f 100644
--- a/eel/eel-stock-dialogs.c
+++ b/eel/eel-stock-dialogs.c
@@ -22,9 +22,9 @@
#include <config.h>
#include "eel-stock-dialogs.h"
+#include <adwaita.h>
#include <glib/gi18n-lib.h>
#include <gtk/gtk.h>
-#include <libadwaita-1/adwaita.h>
#define TIMED_WAIT_STANDARD_DURATION 2000
#define TIMED_WAIT_MIN_TIME_UP 3000