Update to follow API change.

Change-Id: I4d65d3a8847597cdb390c22f0ee20bd5ce028509
This commit is contained in:
Dianne Hackborn
2011-03-18 12:29:41 -07:00
parent 6a01acdeaf
commit 48147dca83

View File

@@ -230,8 +230,10 @@ public class Settings extends PreferenceActivity implements ButtonBarHandler {
}
@Override
public Intent onBuildStartFragmentIntent(String fragmentName, Bundle args) {
Intent intent = super.onBuildStartFragmentIntent(fragmentName, args);
public Intent onBuildStartFragmentIntent(String fragmentName, Bundle args,
int titleRes, int shortTitleRes) {
Intent intent = super.onBuildStartFragmentIntent(fragmentName, args,
titleRes, shortTitleRes);
intent.setClass(this, SubSettings.class);
return intent;
}