| 323 | } |
| 324 | |
| 325 | void CAUserDefault::setIntegerForKey(const char* pKey, int value) |
| 326 | { |
| 327 | #ifdef KEEP_COMPATABILITY |
| 328 | deleteNodeByKey(pKey); |
| 329 | #endif |
| 330 | |
| 331 | return setIntegerForKeyJNI(pKey, value); |
| 332 | } |
| 333 | |
| 334 | void CAUserDefault::setFloatForKey(const char* pKey, float value) |
| 335 | { |
nothing calls this directly
no test coverage detected