forked from len0rd/rockbox
Clean up r28408 coding style a bit to follow our guidelines with regard to
brace placement, tabs and 80 char line width. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28410 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cc758e42b9
commit
2d05d2f9da
5 changed files with 78 additions and 69 deletions
|
@ -24,7 +24,6 @@ package org.rockbox;
|
|||
import android.app.Activity;
|
||||
import android.app.ProgressDialog;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.ViewGroup;
|
||||
|
@ -167,15 +166,15 @@ public class RockboxActivity extends Activity
|
|||
if (hostcallback != null)
|
||||
{
|
||||
LOG("Something has gone wrong");
|
||||
}
|
||||
hostcallback = callback;
|
||||
startActivityForResult(i, 0);
|
||||
}
|
||||
hostcallback = callback;
|
||||
startActivityForResult(i, 0);
|
||||
}
|
||||
|
||||
public void onActivityResult(int requestCode, int resultCode, Intent data)
|
||||
{
|
||||
hostcallback.onComplete(resultCode, data);
|
||||
hostcallback = null;
|
||||
hostcallback.onComplete(resultCode, data);
|
||||
hostcallback = null;
|
||||
}
|
||||
|
||||
private void LOG(CharSequence text)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue