59cf811a68
2009-07-14 14:41:44 +0200 oc r273974 : #i103538# Issue-id added 2009-07-14 14:40:10 +0200 oc r273973 : #i103438 2009-07-14 14:03:06 +0200 oc r273971 : #i103535# additional check added 2009-07-14 13:46:19 +0200 hde r273969 : #i103529#testcases excluded to to issue 102752 2009-07-14 07:48:41 +0200 hde r273957 : changed fileowner from fredrik.haegg@sun.com to helge.delfs@sun.com 2009-07-13 16:03:42 +0200 oc r273942 : #i103513# Issue-ID added 2009-07-13 16:02:14 +0200 hde r273941 : no writer document was opened when options dialog called. Added hNewDocument before opening options dialog 2009-07-13 14:17:14 +0200 oc r273935 : #i103503# macrobutton outcommented 2009-07-13 14:13:30 +0200 wg r273934 : i103501 deleting fragments of diff 2009-07-13 13:10:21 +0200 hde r273931 : Issue 103382 2009-07-13 12:59:14 +0200 hde r273930 : changed fileowner from fredrik.haegg@sun.com to wolfram.garten@sun.com 2009-07-13 12:03:41 +0200 hde r273927 : changed fileowner from fredrik.haegg@sun.com to helge.delfs@sun.com 2009-07-13 12:01:47 +0200 hde r273926 : changed fileowner from helge.delfs@sun.com to oliver.craemer@sun.com
69 lines
2.3 KiB
QBasic
69 lines
2.3 KiB
QBasic
'encoding UTF-8 Do not remove or change this line!
|
|
'**************************************************************************
|
|
'* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
'*
|
|
'* Copyright 2008 by Sun Microsystems, Inc.
|
|
'*
|
|
'* OpenOffice.org - a multi-platform office productivity suite
|
|
'*
|
|
'* $RCSfile: w_spellcheck.bas,v $
|
|
'*
|
|
'* $Revision: 1.1 $
|
|
'*
|
|
'* last change: $Author: fredrikh $ $Date: 2008-06-18 09:11:26 $
|
|
'*
|
|
'* This file is part of OpenOffice.org.
|
|
'*
|
|
'* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
'* it under the terms of the GNU Lesser General Public License version 3
|
|
'* only, as published by the Free Software Foundation.
|
|
'*
|
|
'* OpenOffice.org is distributed in the hope that it will be useful,
|
|
'* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
'* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
'* GNU Lesser General Public License version 3 for more details
|
|
'* (a copy is included in the LICENSE file that accompanied this code).
|
|
'*
|
|
'* You should have received a copy of the GNU Lesser General Public License
|
|
'* version 3 along with OpenOffice.org. If not, see
|
|
'* <http://www.openoffice.org/license.html>
|
|
'* for a copy of the LGPLv3 License.
|
|
'*
|
|
'/************************************************************************
|
|
'*
|
|
'* owner : helge.delfs@sun.com
|
|
'*
|
|
'* short description : Writer-Spellcheck-Test
|
|
'*
|
|
'\***********************************************************************
|
|
|
|
sub main
|
|
|
|
Dim StartTime
|
|
StartTime = Now()
|
|
|
|
use "writer\tools\includes\w_tools.inc"
|
|
use "writer\tools\includes\w_tool3.inc"
|
|
use "writer\tools\includes\w_tool4.inc"
|
|
use "writer\optional\includes\spellcheck\w_spellcheck.inc"
|
|
use "writer\tools\includes\w_locale_strings2.inc"
|
|
|
|
printlog Chr(13) + "Loading of Include - Files takes: " + Wielange ( StartTime )
|
|
printlog Chr(13) + "******* Writer - Spellcheck - Test *******"
|
|
|
|
Call hStatusIn ( "writer","w_spellcheck.bas" )
|
|
Call w_spellcheck
|
|
Call hStatusOut
|
|
|
|
Printlog Chr(13) + "End of Spellcheck - Test :"
|
|
Printlog "Duration: "+ WieLange ( StartTime )
|
|
Printlog "Date: " + Date + " Time: " + Time
|
|
|
|
end sub
|
|
|
|
sub LoadIncludeFiles
|
|
use "global\system\includes\master.inc"
|
|
use "global\system\includes\gvariabl.inc"
|
|
Call GetUseFiles
|
|
gApplication = "WRITER"
|
|
end sub
|