Rename DialogHelper to UIHelper

This commit is contained in:
2016-04-02 10:14:21 -04:00
parent bf6562f854
commit 02e45dbe27
12 changed files with 32 additions and 33 deletions

View File

@@ -27,7 +27,7 @@ import android.view.MotionEvent;
import android.view.View;
import org.isoron.uhabits.BaseTest;
import org.isoron.uhabits.helpers.DialogHelper;
import org.isoron.uhabits.helpers.UIHelper;
import java.io.File;
import java.io.FileOutputStream;
@@ -179,7 +179,7 @@ public class ViewTest extends BaseTest
protected int dpToPixels(int dp)
{
return (int) DialogHelper.dpToPixels(targetContext, dp);
return (int) UIHelper.dpToPixels(targetContext, dp);
}
protected void tap(GestureDetector.OnGestureListener view, int x, int y) throws InterruptedException