Rename class

This commit is contained in:
Felix Kloft
2013-05-17 08:56:03 +02:00
parent 42b03d2daa
commit 2194a0c74f
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ public class IITC_Mobile extends Activity {
private boolean fullscreen_mode = false;
private boolean fullscreen_actionbar = false;
private ActionBar actionBar;
private DeviceAccountLogin mLogin;
private IITC_DeviceAccountLogin mLogin;
@Override
protected void onCreate(Bundle savedInstanceState) {
@ -379,7 +379,7 @@ public class IITC_Mobile extends Activity {
public void onReceivedLoginRequest(IITC_WebViewClient client, WebView view,
String realm, String account, String args) {
mLogin = new DeviceAccountLogin(this, view, client);
mLogin = new IITC_DeviceAccountLogin(this, view, client);
mLogin.startLogin(realm, account, args);
}