Files
gentoo/gui-apps/wf-shell/files/wf-shell-0.11-add-missing-include.patch
Viorel Munteanu dbb9e30b49 gui-apps/wf-shell: add 0.11.0_pre20260801
wf-shell has been updated to use gtk 4 and has a lot of improvements.
There is no upstream wf-shell release 0.11 to correspond with wayfire 0.11.
Create a snapsot release.

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
2026-08-01 17:07:41 +03:00

21 lines
831 B
Diff
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
When compiling with gcc-17:
In file included from ../wf-shell-77038bdf8a05005ff510e7e1ba3ac2054cc304ce/src/dock/toplevel.cpp:2:
../wf-shell-77038bdf8a05005ff510e7e1ba3ac2054cc304ce/src/dock/toplevel-icon.hpp:11:21: error: std::string has not been declared
11 | void set_app_id(std::string app_id);
| ^~~
../wf-shell-77038bdf8a05005ff510e7e1ba3ac2054cc304ce/src/dock/toplevel-icon.hpp:1:1: note: std::string is defined in header <string>; this is probably fixable by adding #include <string>
+++ |+#include <string>
1 | #pragma once
--- a/src/dock/toplevel-icon.hpp
+++ b/src/dock/toplevel-icon.hpp
@@ -1,6 +1,7 @@
#pragma once
#include <memory>
+#include <string>
#include <wlr-foreign-toplevel-management-unstable-v1-client-protocol.h>
class WfToplevelIcon