summaryrefslogtreecommitdiff
path: root/librelogo/LibreLogoDummy.py
diff options
context:
space:
mode:
Diffstat (limited to 'librelogo/LibreLogoDummy.py')
-rw-r--r--librelogo/LibreLogoDummy.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/librelogo/LibreLogoDummy.py b/librelogo/LibreLogoDummy.py
new file mode 100644
index 000000000000..1d65ff4919fa
--- /dev/null
+++ b/librelogo/LibreLogoDummy.py
@@ -0,0 +1,14 @@
+# dummy UNO component to get the path of the localizations
+import uno, unohelper, os, sys
+from com.sun.star.lang import XMain
+class LibreLogoDummyComponent(XMain, unohelper.Base):
+ def __init__( self, ctx ):
+ self.ctx = ctx
+
+ def get_path(self):
+ import librelogodummy_path
+ return librelogodummy_path.get_path()
+
+g_ImplementationHelper = unohelper.ImplementationHelper()
+g_ImplementationHelper.addImplementation( \
+ LibreLogoDummyComponent,"org.openoffice.comp.pyuno.LibreLogoDummy",("org.openoffice.LibreLogo.LibreLogoDummy",),)