summaryrefslogtreecommitdiff
path: root/wizards/source/tools
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2011-07-12 00:59:26 +0200
committerXisco Fauli <anistenis@gmail.com>2011-07-12 01:01:09 +0200
commit2bd57a620ce4bc81a114e38f397c0cb541bf2635 (patch)
tree9bf04015738876e9e45a330ab98b87f5e3688680 /wizards/source/tools
parent34fd375686bf73b3fa7c94f292c7ec541c67df27 (diff)
fdo#37290: migrate Basic to new resource service
Diffstat (limited to 'wizards/source/tools')
-rw-r--r--wizards/source/tools/Misc.xba16
1 files changed, 10 insertions, 6 deletions
diff --git a/wizards/source/tools/Misc.xba b/wizards/source/tools/Misc.xba
index 7eca46671f12..faa0f802f6c6 100644
--- a/wizards/source/tools/Misc.xba
+++ b/wizards/source/tools/Misc.xba
@@ -271,14 +271,18 @@ End Sub
Function InitResources(Description, ShortDescription as String) as boolean
+Dim xResource as Object
+Dim aArgs(0) as String
On Error Goto ErrorOcurred
- oResSrv = createUnoService( &quot;com.sun.star.resource.VclStringResourceLoader&quot; )
- If (IsNull(oResSrv)) then
+ aArgs(0) = ShortDescription
+ oConfigProvider = createUnoService(&quot;com.sun.star.configuration.ConfigurationProvider&quot;)
+ xResource = getProcessServiceManager().createInstanceWithArguments( &quot;org.libreoffice.resource.ResourceIndexAccess&quot;, aArgs() )
+ If (IsNull(xResource)) then
InitResources = FALSE
- MsgBox( Description &amp; &quot;: No resource loader found&quot;, 16, GetProductName())
+ MsgBox(&quot;could not initialize ResourceIndexAccess&quot;)
Else
InitResources = TRUE
- oResSrv.FileName = ShortDescription
+ oResSrv = xResource.getByName( &quot;String&quot; )
End If
Exit Function
ErrorOcurred:
@@ -294,7 +298,7 @@ End Function
Function GetResText( nID as integer ) As string
On Error Goto ErrorOcurred
If Not IsNull(oResSrv) Then
- GetResText = oResSrv.getString( nID )
+ GetResText = oResSrv.getByIndex( nID )
Else
GetResText = &quot;&quot;
End If
@@ -814,4 +818,4 @@ End Sub
Function CalIsLeapYear(ByVal iYear as Integer) as Boolean
CalIsLeapYear = ((iYear Mod 4 = 0) And ((iYear Mod 100 &lt;&gt; 0) Or (iYear Mod 400 = 0)))
End Function
-</script:module> \ No newline at end of file
+</script:module>