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

Commit ad6407cd authored by Zixuan Qu's avatar Zixuan Qu Committed by Android (Google) Code Review
Browse files

Merge "Make VelocityControl::getParameters() const."

parents 8da6fdf0 ad074410
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ public:
    VelocityControl();

    /* Gets the various parameters. */
    VelocityControlParameters& getParameters();
    const VelocityControlParameters& getParameters() const;

    /* Sets the various parameters. */
    void setParameters(const VelocityControlParameters& parameters);
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ VelocityControl::VelocityControl() {
    reset();
}

VelocityControlParameters& VelocityControl::getParameters() {
const VelocityControlParameters& VelocityControl::getParameters() const{
    return mParameters;
}