caused by Safe being completely killed and when brought back to life
catAdapter was not set. Also bumped to 1.2.3rc2
git-svn-id: http://openintents.googlecode.com/svn/trunk/Safe@2388
72b678ce-9140-0410-bee8-
679b907dd61a
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openintents.safe" \r
- android:versionCode="12" android:versionName="1.2.3rc1">\r
+ android:versionCode="12" android:versionName="1.2.3rc2">\r
<!-- History:
1.2.3 [12]: 2009-11-12\r
1.2.2 [11]: 2009-10-29\r
private static String masterKey;
private List<CategoryEntry> rows=null;
- private CategoryListItemAdapter catAdapter;
+ private CategoryListItemAdapter catAdapter=null;
private Intent restartTimerIntent=null;
private int lastPosition=0;
}
if (requestCode==REQUEST_OPEN_CATEGORY) {
// update in case passwords were added/deleted and caused the counts to update
- catAdapter.notifyDataSetChanged();
+ if (catAdapter!=null) {
+ catAdapter.notifyDataSetChanged();
+ }
}
}