carla 2013-02-21 21:14:32 +00:00
parent c8c6aa0338
commit 636e7db222
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ public final class DateUtil {
Calendar horaSomar = Calendar.getInstance(); Calendar horaSomar = Calendar.getInstance();
horaSomar.setTime(horaAdicao.getFecha()); horaSomar.setTime(horaAdicao.getFecha());
int horaTotal = horaAtual.get(Calendar.HOUR) + horaSomar.get(Calendar.HOUR); int horaTotal = horaAtual.get(Calendar.HOUR_OF_DAY) + horaSomar.get(Calendar.HOUR_OF_DAY);
int minutoTotal = horaAtual.get(Calendar.MINUTE) + horaSomar.get(Calendar.MINUTE); int minutoTotal = horaAtual.get(Calendar.MINUTE) + horaSomar.get(Calendar.MINUTE);
Calendar fecInicio = getFecInicio(); Calendar fecInicio = getFecInicio();