X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2FAboutDialog.java;h=4fa3fb2f744d9c92c12f2a1e7df22c37dc80cb31;hb=f4315c29db9e9f38d3c84998c159c1b246290c70;hp=44d3ac0868c0f79f6e404147f3acf4185ef38d54;hpb=e90fe1c8be4ede280e8f9e4b17710330f11f9355;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/AboutDialog.java b/app/src/main/java/com/stoutner/privacybrowser/AboutDialog.java index 44d3ac08..4fa3fb2f 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/AboutDialog.java +++ b/app/src/main/java/com/stoutner/privacybrowser/AboutDialog.java @@ -1,7 +1,7 @@ /** * Copyright 2015-2016 Soren Stoutner . * - * This file is part of Privacy Browser . + * This file is part of Privacy Browser . * * Privacy Browser is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -56,7 +56,7 @@ public class AboutDialog extends AppCompatDialogFragment { // shouldOverrideUrlLoading lets us close AboutDialog when a link is touched. Otherwise the dialog covers the website that loads beneath in Privacy Browser. @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { - MainWebView.mainWebView.loadUrl(url); + MainWebViewActivity.mainWebView.loadUrl(url); alertDialog.dismiss(); return true; }