cmparts: livedisplay: Fix missing color profile strings
We were looking for the strings in the wrong package.
Change-Id: I2baee331b3f2a5d645f734602433348c9cd84ae3
diff --git a/src/org/cyanogenmod/cmparts/livedisplay/LiveDisplay.java b/src/org/cyanogenmod/cmparts/livedisplay/LiveDisplay.java
index 8e0d536..5858e59 100644
--- a/src/org/cyanogenmod/cmparts/livedisplay/LiveDisplay.java
+++ b/src/org/cyanogenmod/cmparts/livedisplay/LiveDisplay.java
@@ -216,7 +216,7 @@
private String getStringForResourceName(String resourceName, String defaultValue) {
Resources res = getResources();
- int resId = res.getIdentifier(resourceName, "string", "org.cyanogenmod.livedisplay");
+ int resId = res.getIdentifier(resourceName, "string", "org.cyanogenmod.cmparts");
if (resId <= 0) {
Log.e(TAG, "No resource found for " + resourceName);
return defaultValue;