summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorptyl@cloudon.com <ptyl@cloudon.com>2013-10-16 16:02:44 +0200
committerJan Holesovsky <kendy@collabora.com>2013-10-17 11:11:39 +0200
commitd8e8e6bcbeaa9c4d0058e01ce7be07e57f615b1d (patch)
tree155fd020361e6e51ebe1bf6ff80b9334f562257f /ios
parentfcdde111e451f84e373c67a485c87d1ad744cfe4 (diff)
added draw tile signature and select all fix
Change-Id: I6118c55caa12d9ba52000f89e869e27b218859be
Diffstat (limited to 'ios')
-rw-r--r--ios/shared/ios_sharedlo/cxx/mlo_uno.mm2
-rw-r--r--ios/shared/ios_sharedlo/objective_c/view_controllers/selection/MLOContextualMenuFocus.m2
2 files changed, 1 insertions, 3 deletions
diff --git a/ios/shared/ios_sharedlo/cxx/mlo_uno.mm b/ios/shared/ios_sharedlo/cxx/mlo_uno.mm
index f75fe1a455bf..ff92821f0fff 100644
--- a/ios/shared/ios_sharedlo/cxx/mlo_uno.mm
+++ b/ios/shared/ios_sharedlo/cxx/mlo_uno.mm
@@ -471,7 +471,7 @@ mlo_is_document_open(void){
extern "C"
void
-lmo_select_all(void){
+mlo_select_all(void){
getXDispatchHelper()->executeDispatch(getXDispatchProvider(),
OUString(".uno:SelectAll"),
OUString("_self"),
diff --git a/ios/shared/ios_sharedlo/objective_c/view_controllers/selection/MLOContextualMenuFocus.m b/ios/shared/ios_sharedlo/objective_c/view_controllers/selection/MLOContextualMenuFocus.m
index c9a75c481de5..79ccd4d53566 100644
--- a/ios/shared/ios_sharedlo/objective_c/view_controllers/selection/MLOContextualMenuFocus.m
+++ b/ios/shared/ios_sharedlo/objective_c/view_controllers/selection/MLOContextualMenuFocus.m
@@ -33,11 +33,9 @@
-(void)loSelectAll:(id) sender{
-#if 0 // No mlo_select_all() anywhere !?
NSLog(@"Calling mlo_select_all()");
mlo_select_all();
NSLog(@"mlo_select_all() returned. reshowing contextualMenu");
-#endif
[_selectionViewController showPostSelectAll];
}