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

Commit dcfed6ee authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge changes from topics "setIconTint", "sync_update"

* changes:
  Added setIconTint
  Added sync update database support
parents 170a662a 0439372f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1855,12 +1855,14 @@ public class SubscriptionController extends ISub.Stub {

    /**
     * Set SIM color tint by simInfo index
     * @param tint the tint color of the SIM
     *
     * @param subId the unique SubInfoRecord index in database
     * @param tint the tint color of the SIM
     *
     * @return the number of records updated
     */
    @Override
    public int setIconTint(int tint, int subId) {
    public int setIconTint(int subId, int tint) {
        if (DBG) logd("[setIconTint]+ tint:" + tint + " subId:" + subId);

        enforceModifyPhoneState("setIconTint");
Loading