mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 08:46:00 +01:00
Fix a compiler warning (#1124)
Co-authored-by: hnboy <hnboy@users.noreply.github.com>
This commit is contained in:
parent
45d2d1e97d
commit
afe12dc90b
4 changed files with 6 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
.\" Automatically generated by Pandoc 2.5
|
.\" Automatically generated by Pandoc 2.5
|
||||||
.\"
|
.\"
|
||||||
.TH "Hyprland" "1" "11 Oct 2022" "" "Hyprland User Manual"
|
.TH "Hyprland" "1" "27 Nov 2022" "" "Hyprland User Manual"
|
||||||
.hy
|
.hy
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.PP
|
.PP
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.\" Automatically generated by Pandoc 2.5
|
.\" Automatically generated by Pandoc 2.5
|
||||||
.\"
|
.\"
|
||||||
.TH "hyprctl" "1" "11 Oct 2022" "" "hyprctl User Manual"
|
.TH "hyprctl" "1" "27 Nov 2022" "" "hyprctl User Manual"
|
||||||
.hy
|
.hy
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.PP
|
.PP
|
||||||
|
|
|
@ -416,3 +416,6 @@ CWindow* IHyprLayout::getNextWindowCandidate(CWindow* pWindow) {
|
||||||
|
|
||||||
return PWINDOWCANDIDATE;
|
return PWINDOWCANDIDATE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IHyprLayout::~IHyprLayout() {
|
||||||
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@ enum eFullscreenMode : uint8_t;
|
||||||
|
|
||||||
interface IHyprLayout {
|
interface IHyprLayout {
|
||||||
public:
|
public:
|
||||||
|
virtual ~IHyprLayout() = 0;
|
||||||
virtual void onEnable() = 0;
|
virtual void onEnable() = 0;
|
||||||
virtual void onDisable() = 0;
|
virtual void onDisable() = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue