OG: fix layout of AppSelectListPreference

actually use OUR layout instead of the one in settings with happens to have the same name

Change-Id: I85f0bb36413c0775dd2928b241dc9f08583c3728
diff --git a/res/layout/preference_icon.xml b/res/layout/applist_preference_icon.xml
similarity index 99%
rename from res/layout/preference_icon.xml
rename to res/layout/applist_preference_icon.xml
index 687de3d..d1972f8 100644
--- a/res/layout/preference_icon.xml
+++ b/res/layout/applist_preference_icon.xml
@@ -3,9 +3,9 @@
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
-  
+
           http://www.apache.org/licenses/LICENSE-2.0
-  
+
      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/src/org/omnirom/omnigears/preference/AppSelectListPreference.java b/src/org/omnirom/omnigears/preference/AppSelectListPreference.java
index 59f9a34..8e14961 100644
--- a/src/org/omnirom/omnigears/preference/AppSelectListPreference.java
+++ b/src/org/omnirom/omnigears/preference/AppSelectListPreference.java
@@ -32,7 +32,7 @@
 import android.widget.ImageView;
 import android.widget.TextView;
 
-import com.android.settings.R;
+import org.omnirom.omnigears.R;
 
 import java.util.Collections;
 import java.util.LinkedList;
@@ -118,7 +118,7 @@
         if (convertView != null) {
             holder = (ViewHolder) convertView.getTag();
         } else {
-            convertView = mInflater.inflate(R.layout.preference_icon, null, false);
+            convertView = mInflater.inflate(R.layout.applist_preference_icon, null, false);
             holder = new ViewHolder();
             convertView.setTag(holder);
             holder.title = (TextView) convertView.findViewById(com.android.internal.R.id.title);