vcl: tab cleanup of metric.hxx

Change-Id: I7d168f89fc8cb1b5b85c78e260a9ed786a437265
diff --git a/include/vcl/metric.hxx b/include/vcl/metric.hxx
index 6eb2da7..c22c553 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()