aboutsummaryrefslogtreecommitdiff
path: root/src/Strut.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-06-20 01:30:41 (GMT)
committerfluxgen <fluxgen>2003-06-20 01:30:41 (GMT)
commitfc9b134e5b673e07aa234379cbad4e5d3ea20672 (patch)
tree99beef6b09182c75595820755f7a914a859a2f82 /src/Strut.hh
parent4dd65d902ae9d3e5576cbc66eafdcbc6687081a2 (diff)
downloadfluxbox-fc9b134e5b673e07aa234379cbad4e5d3ea20672.zip
fluxbox-fc9b134e5b673e07aa234379cbad4e5d3ea20672.tar.bz2
minor indent
Diffstat (limited to 'src/Strut.hh')
-rw-r--r--src/Strut.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Strut.hh b/src/Strut.hh
index fac2d42..a0e8dfc 100644
--- a/src/Strut.hh
+++ b/src/Strut.hh
@@ -20,14 +20,16 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: Strut.hh,v 1.1 2003/06/18 12:27:48 fluxgen Exp $ 23// $Id: Strut.hh,v 1.2 2003/06/20 01:30:41 fluxgen Exp $
24 24
25#ifndef STRUT_HH 25#ifndef STRUT_HH
26#define STRUT_HH 26#define STRUT_HH
27 27
28class Strut { 28class Strut {
29public: 29public:
30 Strut(int left, int right, int top, int bottom):m_left(left), m_right(right), m_top(top), m_bottom(bottom) { } 30 Strut(int left, int right,
31 int top, int bottom):m_left(left), m_right(right),
32 m_top(top), m_bottom(bottom) { }
31 int left() const { return m_left; } 33 int left() const { return m_left; }
32 int right() const { return m_right; } 34 int right() const { return m_right; }
33 int bottom() const { return m_bottom; } 35 int bottom() const { return m_bottom; }