OSDN Git Service

am 93e942a9: Change the default alarms.
authorPatrick Scott <phanna@android.com>
Mon, 19 Oct 2009 20:42:03 +0000 (13:42 -0700)
committerAndroid Git Automerger <android-git-automerger@android.com>
Mon, 19 Oct 2009 20:42:03 +0000 (13:42 -0700)
Merge commit '93e942a97a3aba0ad68be6b3db181c939199fa2e' into eclair-mr2

* commit '93e942a97a3aba0ad68be6b3db181c939199fa2e':
  Change the default alarms.

src/com/android/deskclock/AlarmProvider.java

index c635b01..4b6c8a3 100644 (file)
@@ -67,9 +67,8 @@ public class AlarmProvider extends ContentProvider {
             String insertMe = "INSERT INTO alarms " +
                     "(hour, minutes, daysofweek, alarmtime, enabled, vibrate, message, alert) " +
                     "VALUES ";
-            db.execSQL(insertMe + "(7, 0, 127, 0, 0, 1, '', '');");
             db.execSQL(insertMe + "(8, 30, 31, 0, 0, 1, '', '');");
-            db.execSQL(insertMe + "(9, 00, 0, 0, 0, 1, '', '');");
+            db.execSQL(insertMe + "(9, 00, 96, 0, 0, 1, '', '');");
         }
 
         @Override