diff options
| author | Danesh M <danesh@cyngn.com> | 2016-05-19 12:07:08 -0700 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-05-19 12:52:45 -0700 |
| commit | 9dc803c7bda8930a8e903614177b8a93ae5d6b4a (patch) | |
| tree | 33e567d15a958f724ec04c056a9ecc39215292af /src/com/android | |
| parent | 3a532e7d448a78500448956ec52ff24f835f9733 (diff) | |
| download | packages_apps_Settings-9dc803c7bda8930a8e903614177b8a93ae5d6b4a.tar.gz packages_apps_Settings-9dc803c7bda8930a8e903614177b8a93ae5d6b4a.tar.bz2 packages_apps_Settings-9dc803c7bda8930a8e903614177b8a93ae5d6b4a.zip | |
Settings : Add title to xml preference screens
Search indexing was inserting null as the title, which results
in the default "Settings" title if the user selects a search result.
This is inconsistent with the title the user sees when they manually navigate
to that preference screen.
FEIJ-512
Change-Id: I6f6ed7b851c998aa2cb5531bef04e8000ccb8ddd
Diffstat (limited to 'src/com/android')
| -rw-r--r-- | src/com/android/settings/search/IndexDatabaseHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/search/IndexDatabaseHelper.java b/src/com/android/settings/search/IndexDatabaseHelper.java index fd7b76240..4fc93db79 100644 --- a/src/com/android/settings/search/IndexDatabaseHelper.java +++ b/src/com/android/settings/search/IndexDatabaseHelper.java @@ -28,7 +28,7 @@ public class IndexDatabaseHelper extends SQLiteOpenHelper { private static final String TAG = "IndexDatabaseHelper"; private static final String DATABASE_NAME = "search_index.db"; - private static final int DATABASE_VERSION = 119; + private static final int DATABASE_VERSION = 120; public interface Tables { public static final String TABLE_PREFS_INDEX = "prefs_index"; |
