Subversion Repositories ES

Compare Revisions

Last modification

Ignore whitespace Rev 5 → Rev 6

/trunk/src/ch/ffhs/converter/ConverterApplication.java
17,7 → 17,6
package ch.ffhs.converter;
 
import android.app.Application;
import android.preference.PreferenceManager;
 
/**
* This is an example of a {@link android.app.Application} class. Ordinarily you
34,6 → 33,11
*/
public class ConverterApplication extends Application
{
/**
* Activity category for automatically filtering converter Activities
*/
public final static String CATEGORY_CONVERTER =
"android.intent.category.CONVERTER";
 
@Override
public void onCreate()
42,7 → 46,7
* This populates the default values from the preferences XML file. See
* {@link DefaultValues} for more details.
*/
PreferenceManager.setDefaultValues(this, R.xml.default_values, false);
// PreferenceManager.setDefaultValues(this, R.xml.default_values, false);
}
 
@Override