File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/src/org/renpy/android Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 4343import android .view .inputmethod .ExtractedText ;
4444import android .view .inputmethod .ExtractedTextRequest ;
4545import android .view .inputmethod .CompletionInfo ;
46- import android .view .inputmethod .CorrectionInfo ;
46+ //API 11 only
47+ //import android.view.inputmethod.CorrectionInfo;
4748import android .opengl .GLSurfaceView ;
4849import android .net .Uri ;
4950import android .os .PowerManager ;
@@ -1200,11 +1201,12 @@ public boolean commitCompletion(CompletionInfo text){
12001201 return super .commitCompletion (text );
12011202 }
12021203
1204+ /*API11 only
12031205 @Override
12041206 public boolean commitCorrection(CorrectionInfo correctionInfo){
12051207 if (DEBUG) Log.i("Python:", String.format("Commit Correction"));
12061208 return super.commitCorrection(correctionInfo);
1207- }
1209+ }*/
12081210
12091211 @ Override
12101212 public boolean commitText (CharSequence text , int newCursorPosition ) {
You can’t perform that action at this time.
0 commit comments