summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-01-29 15:09:14 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-09 08:09:28 +0100
commit82b0df1d2bda28ce691294e3e1f1d10f1eaf18fe (patch)
treee37c2bf720ebc737f56fa70a0917b825d3237215 /sw
parentc84cc4fcbb4e85a6e5fe9161b6134d474308a319 (diff)
SwDLL: RegisterInterfaces() is needed on Android, too
Otherwise SfxSlotPool::GetUnoSlot() will have no interfaces and we ask what should be the UNO command for a backspace key in Writer, we won't find the needed SwBackspace command, so no action will be posted to the main loop. Change-Id: I62062fbc0e86db83e2b0ddac184bfd6d35d073b2
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/app/swdll.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/app/swdll.cxx b/sw/source/uibase/app/swdll.cxx
index 1e598ef029b4..8f0c4e2610e2 100644
--- a/sw/source/uibase/app/swdll.cxx
+++ b/sw/source/uibase/app/swdll.cxx
@@ -130,10 +130,10 @@ SwDLL::SwDLL()
// register your view-factories here
RegisterFactories();
-#if HAVE_FEATURE_DESKTOP
// register your shell-interfaces here
RegisterInterfaces();
+#if HAVE_FEATURE_DESKTOP
// register your controllers here
RegisterControls();
#endif