all repos — fluxbox @ fc9b134e5b673e07aa234379cbad4e5d3ea20672

custom fork of the fluxbox windowmanager

minor indent
fluxgen fluxgen
commit

fc9b134e5b673e07aa234379cbad4e5d3ea20672

parent

4dd65d902ae9d3e5576cbc66eafdcbc6687081a2

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M src/Strut.hhsrc/Strut.hh

@@ -20,14 +20,16 @@ // 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: Strut.hh,v 1.1 2003/06/18 12:27:48 fluxgen Exp $ +// $Id: Strut.hh,v 1.2 2003/06/20 01:30:41 fluxgen Exp $ #ifndef STRUT_HH #define STRUT_HH class Strut { public: - Strut(int left, int right, int top, int bottom):m_left(left), m_right(right), m_top(top), m_bottom(bottom) { } + Strut(int left, int right, + int top, int bottom):m_left(left), m_right(right), + m_top(top), m_bottom(bottom) { } int left() const { return m_left; } int right() const { return m_right; } int bottom() const { return m_bottom; }