diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-31 21:30:19 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-11-01 00:23:00 +0200 |
commit | 9fabf25bc47c7b16eb22eca3a934c18070e1e9e5 (patch) | |
tree | 0d2a9a11efea55a8c92d1c94449dcadc10aadd16 | |
parent | ec2ea6e6e087d13d484d0e4b938144d28c4395dd (diff) |
Dummy implementation of touch_ui_dialog_modal()
Change-Id: I38b72837d8a26ef95d84deca299023c1646169cf
-rw-r--r-- | ios/shared/ios_sharedlo/cxx/mlo.mm | 9 |
1 files changed, 8 insertions, 1 deletions
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; +} |