--- android/TrainInfo/src/dk/thoerup/traininfo/WelcomeScreen.java 2010/06/14 06:34:29 846 +++ android/TrainInfo/src/dk/thoerup/traininfo/WelcomeScreen.java 2010/06/26 10:47:52 916 @@ -26,8 +26,9 @@ @Override public void onCreate(Bundle savedInstanceState) { - requestWindowFeature( Window.FEATURE_NO_TITLE ); + super.onCreate(savedInstanceState); + requestWindowFeature( Window.FEATURE_NO_TITLE ); setContentView(R.layout.welcome); Button nearestButton = (Button) findViewById(R.id.nearest); @@ -45,7 +46,7 @@ ExceptionHandler.register(this, "http://t-hoerup.dk/android/trace.php"); CheckUpdates update = new CheckUpdates(); - update.checkForUpdates(this, "http://t-hoerup.dk/android/traininfo/version.txt", "TrainInfo DK"); + update.checkForUpdates(this, "http://t-hoerup.dk/android/traininfo/version.txt", "TrainInfo DK", null); /* Runnable r = new Runnable() { @Override