1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/x11-wm/fluxbox/files/patch-src_FbRootWindow.hh
Alan Somers 6daed9aef6 x11-wm/fluxbox: x11-wm/fluxbox: apply upstream patch for multiple bugs
Fixes upstream bugs 1058, 1102, 1111, and 1140.  Fluxbox hasn't made a
release for 3 years, so we should stop waiting and patch our ports tree.

dcdde4d32c
https://sourceforge.net/p/fluxbox/bugs/1140/
https://sourceforge.net/p/fluxbox/bugs/1111/
https://sourceforge.net/p/fluxbox/bugs/1102/
https://sourceforge.net/p/fluxbox/bugs/1058/

PR:		227792
Approved by:	maintainer timeout (jgh)
2018-05-10 20:02:33 +00:00

19 lines
660 B
C++

--- src/FbRootWindow.hh.orig 2015-02-08 10:44:45 UTC
+++ src/FbRootWindow.hh
@@ -41,6 +41,7 @@ class FbRootWindow: public FbTk::FbWindow { (public)
int decorationDepth() const { return m_decorationDepth; }
Visual *decorationVisual() const { return m_decorationVisual; }
Colormap decorationColormap() const { return m_decorationColormap; }
+ int maxDepth() const { return m_maxDepth; }
private:
Visual *m_visual;
@@ -49,6 +50,7 @@ class FbRootWindow: public FbTk::FbWindow { (public)
int m_decorationDepth;
Visual *m_decorationVisual;
Colormap m_decorationColormap;
+ int m_maxDepth;
};
#endif // FBROOTWINDOW_HH