From f33002aa5de7e88960e7c21286a661c89fd478c7 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Sat, 4 Oct 2014 13:29:56 +1000 Subject: [PATCH] vcl: tab cleanup of metric.hxx Change-Id: I7d168f89fc8cb1b5b85c78e260a9ed786a437265 --- include/vcl/metric.hxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/vcl/metric.hxx b/include/vcl/metric.hxx index 6eb2da736838..c22c553e374e 100644 --- a/include/vcl/metric.hxx +++ b/include/vcl/metric.hxx @@ -128,23 +128,23 @@ class VCL_DLLPUBLIC TextRectInfo friend class ::OutputDevice; private: - long mnMaxWidth; + long mnMaxWidth; sal_uInt16 mnLineCount; - bool mbEllipsis; + bool mbEllipsis; public: - TextRectInfo(); + TextRectInfo(); sal_uInt16 GetLineCount() const { return mnLineCount; } - long GetMaxLineWidth() const { return mnMaxWidth; } - bool IsEllipses() const { return mbEllipsis; } + long GetMaxLineWidth() const { return mnMaxWidth; } + bool IsEllipses() const { return mbEllipsis; } - bool operator ==( const TextRectInfo& rInfo ) const - { return ((mnMaxWidth == rInfo.mnMaxWidth) && - (mnLineCount == rInfo.mnLineCount) && - (mbEllipsis == rInfo.mbEllipsis)); } - bool operator !=( const TextRectInfo& rInfo ) const - { return !(TextRectInfo::operator==( rInfo )); } + bool operator ==( const TextRectInfo& rInfo ) const + { return ((mnMaxWidth == rInfo.mnMaxWidth) && + (mnLineCount == rInfo.mnLineCount) && + (mbEllipsis == rInfo.mbEllipsis)); } + bool operator !=( const TextRectInfo& rInfo ) const + { return !(TextRectInfo::operator==( rInfo )); } }; inline TextRectInfo::TextRectInfo()