summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-31 21:30:19 +0200
committerTor Lillqvist <tml@collabora.com>2013-11-01 00:23:00 +0200
commit9fabf25bc47c7b16eb22eca3a934c18070e1e9e5 (patch)
tree0d2a9a11efea55a8c92d1c94449dcadc10aadd16 /ios
parentec2ea6e6e087d13d484d0e4b938144d28c4395dd (diff)
Dummy implementation of touch_ui_dialog_modal()
Change-Id: I38b72837d8a26ef95d84deca299023c1646169cf
Diffstat (limited to 'ios')
-rw-r--r--ios/shared/ios_sharedlo/cxx/mlo.mm9
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;
+}