diff --git a/src/calls-record-store.c b/src/calls-record-store.c index c8117a8..b6598f1 100644 --- a/src/calls-record-store.c +++ b/src/calls-record-store.c @@ -53,12 +53,9 @@ typedef enum static CallsCallRecordState state_to_record_state (CuiCallState call_state) { -#pragma GCC diagnostic ignored "-Wdeprecated-declarations" switch (call_state) { case CUI_CALL_STATE_CALLING: - case CUI_CALL_STATE_ALERTING: case CUI_CALL_STATE_INCOMING: - case CUI_CALL_STATE_WAITING: return STARTED; case CUI_CALL_STATE_ACTIVE: @@ -71,7 +68,6 @@ state_to_record_state (CuiCallState call_state) default: g_assert_not_reached (); } -#pragma GCC diagnostic warning "-Wdeprecated-declarations" }