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

Commit ad074410 authored by Zixuan Qu's avatar Zixuan Qu
Browse files

Make VelocityControl::getParameters() const.

Bug: None
Test: Presubmit
Change-Id: Ie9951171ef42f7b3fc0eb3349c605d7f850082e2
parent bafbe020
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;
}