include/svtools/brwbox.hxx | 1 -
1 file changed, 1 deletion(-)
New commits:
commit 8c980797198252c0dae11aa3c1f12667ac8c7231
Author: codemaestro <[email protected]>
AuthorDate: Fri Oct 24 23:39:03 2025 +0200
Commit: Mike Kaganski <[email protected]>
CommitDate: Sun Oct 26 07:07:13 2025 +0100
tdf#157664: Drop operator !=, where respective operator == is defined
Change-Id: I6155cb6cab78479be8fa1386fa42990258ae1f3e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192967
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <[email protected]>
diff --git a/include/svtools/brwbox.hxx b/include/svtools/brwbox.hxx
index 63c502d270bf..dbfa3de7c058 100644
--- a/include/svtools/brwbox.hxx
+++ b/include/svtools/brwbox.hxx
@@ -334,7 +334,6 @@ private:
m_nRow == r.m_nRow &&
m_bScrolledToReachCell == r.m_bScrolledToReachCell;
}
- bool operator!=(const CursorMoveAttempt& r) const { return !(*this ==
r); }
};
std::stack<CursorMoveAttempt>
m_aGotoStack;