To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88599
User ih changed the following:
What |Old value |New value
================================================================================
CC|'ih,kr' |'bc,ih,kr'
--------------------------------------------------------------------------------
------- Additional comments from [email protected] Tue Feb 10 15:51:05 +0000
2009 -------
@AB: we are using this to check if the resource files for the wizards are
available. So it must be replaced by a new function that helps us to get the
Office Version Data:
Function InitResources(Description, ShortDescription as String) as boolean
On Error Goto ErrorOcurred
oResSrv = createUnoService(
"com.sun.star.resource.VclStringResourceLoader" )
If (IsNull(oResSrv)) then
InitResources = FALSE
MsgBox( Description & ": No resource loader found", 16,
GetProductName())
Else
InitResources = TRUE
oResSrv.FileName = ShortDescription
End If
Exit Function
ErrorOcurred:
Dim nSolarVer
InitResources = FALSE
nSolarVer = GetSolarVersion()
MsgBox("Resource file missing (" & ShortDescription &
trim(str(nSolarVer)) +
"*.res)", 16, GetProductName())
Resume CLERROR
CLERROR:
End Function
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]