File tree 1 file changed +4
-2
lines changed
src/src/org/renpy/android
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 43
43
import android .view .inputmethod .ExtractedText ;
44
44
import android .view .inputmethod .ExtractedTextRequest ;
45
45
import android .view .inputmethod .CompletionInfo ;
46
- import android .view .inputmethod .CorrectionInfo ;
46
+ //API 11 only
47
+ //import android.view.inputmethod.CorrectionInfo;
47
48
import android .opengl .GLSurfaceView ;
48
49
import android .net .Uri ;
49
50
import android .os .PowerManager ;
@@ -1200,11 +1201,12 @@ public boolean commitCompletion(CompletionInfo text){
1200
1201
return super .commitCompletion (text );
1201
1202
}
1202
1203
1204
+ /*API11 only
1203
1205
@Override
1204
1206
public boolean commitCorrection(CorrectionInfo correctionInfo){
1205
1207
if (DEBUG) Log.i("Python:", String.format("Commit Correction"));
1206
1208
return super.commitCorrection(correctionInfo);
1207
- }
1209
+ }*/
1208
1210
1209
1211
@ Override
1210
1212
public boolean commitText (CharSequence text , int newCursorPosition ) {
You can’t perform that action at this time.
0 commit comments