all repos — openbox @ 5802cf6109b720b8f7fa90e2c342b9dc202a6d9b

openbox fork - make it a bit more like ryudo

add operator==
Dana Jansens danakj@orodu.net
commit

5802cf6109b720b8f7fa90e2c342b9dc202a6d9b

parent

a7c7ae09aa53c90d5dd58eb4246debb3437b86dd

1 files changed, 5 insertions(+), 0 deletions(-)

jump to
M otk/strut.hhotk/strut.hh

@@ -23,6 +23,11 @@ //! Constructs a new Strut with no margins

Strut(void): top(0), bottom(0), left(0), right(0) {} //! Constructs a new Strut with margins Strut(int l, int t, int r, int b): top(t), bottom(b), left(l), right(r) {} + + bool operator==(const Strut &o) const { + return top == o.top && bottom == o.bottom && left == o.left && + right == o.right; + } }; }