fix crash on simulator

This commit is contained in:
Jehan Monnier 2010-11-17 10:44:39 +01:00
parent c179b521a8
commit c34f54125d
3 changed files with 10 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View file

@ -292,14 +292,22 @@ class LinphoneCoreImpl implements LinphoneCore {
public LinphoneChatRoom createChatRoom(String to) { public LinphoneChatRoom createChatRoom(String to) {
return new LinphoneChatRoomImpl(createChatRoom(nativePtr,to)); return new LinphoneChatRoomImpl(createChatRoom(nativePtr,to));
} }
public void setPreviewWindow(VideoWindow w) { public void setPreviewWindow(Object w) {
throw new RuntimeException("not implemented yet"); throw new RuntimeException("not implemented yet");
// TODO Auto-generated method stub // TODO Auto-generated method stub
} }
public void setVideoWindow(VideoWindow w) { public void setVideoWindow(Object w) {
throw new RuntimeException("not implemented yet"); throw new RuntimeException("not implemented yet");
// TODO Auto-generated method stub // TODO Auto-generated method stub
} }
public void enableVideo(boolean vcap_enabled, boolean display_enabled) {
// TODO Auto-generated method stub
}
public boolean isVideoEnabled() {
// TODO Auto-generated method stub
return false;
}
} }