Converting Call Forward options to new Contacts API

Change-Id: I78ecd8944a80031ce8a6829bfd013fe700fbdc4c
http://b/2200914
diff --git a/src/com/android/phone/GsmUmtsCallForwardOptions.java b/src/com/android/phone/GsmUmtsCallForwardOptions.java
index 16592c0..aa5ef7d 100644
--- a/src/com/android/phone/GsmUmtsCallForwardOptions.java
+++ b/src/com/android/phone/GsmUmtsCallForwardOptions.java
@@ -9,7 +9,7 @@
 import android.os.Bundle;
 import android.preference.Preference;
 import android.preference.PreferenceScreen;
-import android.provider.Contacts.PhonesColumns;
+import android.provider.ContactsContract.CommonDataKinds.Phone;
 import com.android.internal.telephony.CallForwardInfo;
 import android.util.Log;
 
@@ -18,7 +18,7 @@
     private static final String LOG_TAG = "GsmUmtsCallForwardOptions";
     private final boolean DBG = (PhoneApp.DBG_LEVEL >= 2);
 
-    private static final String NUM_PROJECTION[] = {PhonesColumns.NUMBER};
+    private static final String NUM_PROJECTION[] = {Phone.NUMBER};
 
     private static final String BUTTON_CFU_KEY   = "button_cfu_key";
     private static final String BUTTON_CFB_KEY   = "button_cfb_key";