Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91f56830 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Fix -Wshadow-field warnings.

Test: build
Change-Id: I15c7a530ab7c4ba038c49b7ba48dcf76422a2b5f
parent 49a945a2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -72,11 +72,11 @@ Rect& Rect::offsetBy(int32_t x, int32_t y) {
    return *this;
}

Rect& Rect::inset(int32_t left, int32_t top, int32_t right, int32_t bottom) {
    this->left += left;
    this->top += top;
    this->right -= right;
    this->bottom -= bottom;
Rect& Rect::inset(int32_t _left, int32_t _top, int32_t _right, int32_t _bottom) {
    this->left += _left;
    this->top += _top;
    this->right -= _right;
    this->bottom -= _bottom;
    return *this;
}

+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ public:
    /**
     * Insets the rectangle on all sides specified by the insets.
     */
    Rect& inset(int32_t left, int32_t top, int32_t right, int32_t bottom);
    Rect& inset(int32_t _left, int32_t _top, int32_t _right, int32_t _bottom);

    bool intersect(const Rect& with, Rect* result) const;