summaryrefslogtreecommitdiff
path: root/wizards/source
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-04-17 20:00:18 +0200
committerDavid Tardon <dtardon@redhat.com>2013-04-17 18:09:01 +0000
commit96adcf4b9f466e2bf26ec5aeb9e4202002376a61 (patch)
treeb1f247a5d46c9d1e1ab81a91e6bf5038fb31d183 /wizards/source
parentf22006dc6ac34a35a060e15466cf6b2d2058617d (diff)
Remove unused launcher wizard
Change-Id: I6c071f00eef88d3f56e76efddf6f0c71aa56b089 Reviewed-on: https://gerrit.libreoffice.org/3437 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'wizards/source')
-rw-r--r--wizards/source/launcher/DicOOo.xba76
-rw-r--r--wizards/source/launcher/dialog.xlb3
-rw-r--r--wizards/source/launcher/script.xlb5
3 files changed, 0 insertions, 84 deletions
diff --git a/wizards/source/launcher/DicOOo.xba b/wizards/source/launcher/DicOOo.xba
deleted file mode 100644
index 1e1e85e94950..000000000000
--- a/wizards/source/launcher/DicOOo.xba
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
-<!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
--->
-<script:module xmlns:script="http://openoffice.org/2000/script" script:name="DicOOo" script:language="StarBasic">Option Explicit
-
-Sub StartDicOOo
-
-Dim ThePath as string
-Dim DefPath as string
-Dim aService as object
-Dim MyDicOOo as string
-dim TheDoc as object
-dim args(1) as new com.sun.star.beans.PropertyValue
-
-on error resume next
-
-&apos; Find path
-aService = CreateUnoService(&quot;com.sun.star.util.PathSubstitution&quot;)
-ThePath =ConvertToURL(aService.substituteVariables(&quot;$(user)&quot;, true))
-ThePath=ThePath &amp; &quot;/wordbook&quot;
-DefPath =ConvertToURL(aService.substituteVariables(&quot;$(prog)&quot;, true))
-DefPath=DefPath &amp; &quot;/../share/dict/ooo&quot;
-
-MyDicOOo=&quot;&quot;
-
-if fileExists(ThePath &amp; &quot;/DicOOo.lst&quot;) then
- &apos;read DicOOo.lst file in user directory
- Open ThePath &amp; &quot;/DicOOo.lst&quot; for input as #1
- line input #1, MyDicOOo
- close #1
-else
- if fileExists(DefPath &amp; &quot;/DicOOo.lst&quot;) then
- &apos;read DicOOo.lst file in share directory
- Open DefPath &amp; &quot;/DicOOo.lst&quot; for input as #1
- line input #1, MyDicOOo
- close #1
- else
- &apos;creates default file in user directory
- Open ThePath &amp; &quot;/DicOOo.lst&quot; for output as #1
- print #1,convertFromURL(DefPath &amp; &quot;/DicOOo.sxw&quot;)
- close #1
- endif
-endif
-
-&apos;security
-if Not fileExists(MyDicOOo) then
- MyDicOOo= DefPath &amp; &quot;/DicOOo.sxw&quot;
-endif
-
-MyDicOOo=ConvertToURL(MyDicOOo)
-
-&apos;Opens DicOOo main file
-args(0).name=&quot;InteractionHandler&quot;
-args(0).value=&quot;&quot;
-args(1).name=&quot;MacroExecutionMode&quot;
-args(1).value=com.sun.star.document.MacroExecMode.ALWAYS_EXECUTE_NO_WARN &apos;4
-TheDoc=StarDesktop.loadComponentFromURL(MyDicOOo,&quot;_blank&quot;,0,args())
-
-End Sub
-</script:module>
diff --git a/wizards/source/launcher/dialog.xlb b/wizards/source/launcher/dialog.xlb
deleted file mode 100644
index a4c6d756ca75..000000000000
--- a/wizards/source/launcher/dialog.xlb
+++ /dev/null
@@ -1,3 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
-<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Launcher" library:readonly="true" library:passwordprotected="false"/>
diff --git a/wizards/source/launcher/script.xlb b/wizards/source/launcher/script.xlb
deleted file mode 100644
index 55310d9fb286..000000000000
--- a/wizards/source/launcher/script.xlb
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
-<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Launcher" library:readonly="true" library:passwordprotected="false">
- <library:element library:name="DicOOo"/>
-</library:library>