[SimpleTextInput] Fix InputDelegate to be of the right type. ObjC can call us with any type conforming to the right protocol. Fixes #18339.

This commit is contained in:
Rolf Bjarne Kvinge 2014-03-13 16:49:53 +01:00
Родитель 5366c26351
Коммит 11e28ef881
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -21,7 +21,7 @@ namespace SimpleTextInput
UITextInputStringTokenizer tokenizer;
SimpleCoreTextView textView;
NSDictionary markedTextStyle;
UITextInputDelegate inputDelegate;
IUITextInputDelegate inputDelegate;
public delegate void ViewWillEditDelegate (EditableCoreTextView editableCoreTextView);
public event ViewWillEditDelegate ViewWillEdit;
@ -103,7 +103,7 @@ namespace SimpleTextInput
#region UITextInput methods
[Export ("inputDelegate")]
public UITextInputDelegate InputDelegate {
public IUITextInputDelegate InputDelegate {
get {
return inputDelegate;
}