get file names right

This commit is contained in:
sonora 2014-09-11 16:48:52 +02:00
parent 5254d9832f
commit 0ae0a0d061
3 changed files with 2 additions and 2 deletions

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -685,10 +685,10 @@ public class RouteInfoWidgetsFactory {
} else if(alarm.getType() == AlarmInfoType.TOLL_BOOTH) { } else if(alarm.getType() == AlarmInfoType.TOLL_BOOTH) {
text = "$"; text = "$";
} else if(alarm.getType() == AlarmInfoType.TRAFFIC_CALMING) { } else if(alarm.getType() == AlarmInfoType.TRAFFIC_CALMING) {
locimgId = R.drawable.warning_speed_bump; locimgId = R.drawable.warnings_speed_bump;
text = ""; text = "";
} else if(alarm.getType() == AlarmInfoType.STOP) { } else if(alarm.getType() == AlarmInfoType.STOP) {
locimgId = R.drawable.warning_stop_sign; locimgId = R.drawable.warnings_stop_sign;
//text = "STOP"; //text = "STOP";
//text = ""; //text = "";
} }