~openerp-dev/openerp-mobile/openerp-mobile-10

« back to all changes in this revision

Viewing changes to src/com/openerp/util/PreferenceManager.java

  • Committer: Dharmang Soni (OpenERP)
  • Date: 2014-05-06 09:59:35 UTC
  • mfrom: (149.1.9 openerp-mobile)
  • Revision ID: dpr@tinyerp.com-20140506095935-n38kxiz5lany40v5
[MERGE] merged main branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        public int getInt(String key, int default_value) {
33
33
                return Integer.parseInt(mPref.getString(key, default_value + ""));
34
34
        }
 
35
 
35
36
}