From 9fabf25bc47c7b16eb22eca3a934c18070e1e9e5 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 31 Oct 2013 21:30:19 +0200 Subject: Dummy implementation of touch_ui_dialog_modal() Change-Id: I38b72837d8a26ef95d84deca299023c1646169cf --- ios/shared/ios_sharedlo/cxx/mlo.mm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'ios/shared') diff --git a/ios/shared/ios_sharedlo/cxx/mlo.mm b/ios/shared/ios_sharedlo/cxx/mlo.mm index 8f551fb88f09..dc6fa4249e20 100644 --- a/ios/shared/ios_sharedlo/cxx/mlo.mm +++ b/ios/shared/ios_sharedlo/cxx/mlo.mm @@ -216,5 +216,12 @@ mlo_initialize(void) osl_setCommandArgs(argc, (char **) argv); } +// Dummy implementation for now, probably this should be handled in a +// different way in each app that uses this "shared" library? Like +// most in touch.h, the dialog API is not set in stone yet. - +MLODialogResult touch_ui_dialog_modal(MLODialogKind kind, const char *message) +{ + NSLog(@"===> %s", message); + return MLODialogOK; +} -- cgit