all repos — fluxbox @ 9db217ac4b03231f37b81cc2fb525b0c3b392e94

custom fork of the fluxbox windowmanager

not equal operator
fluxgen fluxgen
commit

9db217ac4b03231f37b81cc2fb525b0c3b392e94

parent

9fb33e51d4943f6d1350ee1d0daee8f9b50301e2

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M src/FbTk/FbWindow.hhsrc/FbTk/FbWindow.hh

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbWindow.hh,v 1.2 2002/12/04 00:02:52 fluxgen Exp $ +// $Id: FbWindow.hh,v 1.3 2002/12/13 20:29:31 fluxgen Exp $ #ifndef FBTK_FBWINDOW_HH #define FBTK_FBWINDOW_HH

@@ -77,8 +77,10 @@ size_t width() const { return m_width; }

size_t height() const { return m_height; } /// compare X window bool operator == (Window win) const { return m_window == win; } + bool operator != (Window win) const { return m_window != win; } /// compare two windows bool operator == (const FbWindow &win) const { return m_window == win.m_window; } + bool operator != (const FbWindow &win) const { return m_window != win.m_window; } private: void updateGeometry(); void create(Window parent, int x, int y, size_t width, size_t height, long eventmask,