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

Commit c569a957 authored by Danny Baumann's avatar Danny Baumann
Browse files

Fix parameter naming.

Change-Id: If5aa2c46f5c9fb78a058e073c00b6dd9fc3cf458
parent 8fe1a312
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -129,9 +129,9 @@ public class CallLogQueryHandler extends NoNullCursorAsyncQueryHandler {
        fetchCalls(QUERY_CALLLOG_TOKEN, callType, false /* newOnly */, 0, newerThan);
    }

    public void fetchCalls(int callType, long newerThan, int slot) {
    public void fetchCalls(int callType, long newerThan, int slotId) {
        cancelFetch();
        fetchCalls(QUERY_CALLLOG_TOKEN, callType, false /* newOnly */, 0, newerThan, slot);
        fetchCalls(QUERY_CALLLOG_TOKEN, callType, false /* newOnly */, 0, newerThan, slotId);
    }

    public void fetchCalls(int callType) {
@@ -152,8 +152,8 @@ public class CallLogQueryHandler extends NoNullCursorAsyncQueryHandler {
                Calls.DEFAULT_SORT_ORDER);
    }

    public void fetchCallsInDateRange(int callType, long fromDate, long toDate, int subId) {
        fetchCalls(QUERY_CALLLOG_TOKEN, callType, false, toDate, fromDate, subId);
    public void fetchCallsInDateRange(int callType, long fromDate, long toDate, int slotId) {
        fetchCalls(QUERY_CALLLOG_TOKEN, callType, false, toDate, fromDate, slotId);
    }

    public void fetchVoicemailStatus() {