This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8520597d76 Cleanup
8520597d76 is described below

commit 8520597d76449d0700d33dcf99af949529a7c89a
Author: mseidel <msei...@apache.org>
AuthorDate: Mon Feb 17 00:30:52 2025 +0100

    Cleanup
---
 main/basic/source/comp/buffer.cxx           | 28 +++++++--------
 main/basic/source/comp/exprgen.cxx          | 55 ++++++++++++++--------------
 main/basic/source/comp/io.cxx               | 31 ++++++++--------
 main/basic/source/comp/scanner.cxx          | 14 ++++----
 main/codemaker/source/codemaker/options.cxx | 39 ++++++++++----------
 main/framework/source/jobs/jobdata.cxx      | 56 ++++++++++++++---------------
 6 files changed, 107 insertions(+), 116 deletions(-)

diff --git a/main/basic/source/comp/buffer.cxx 
b/main/basic/source/comp/buffer.cxx
index c3b9d4ea0d..7668bceb08 100644
--- a/main/basic/source/comp/buffer.cxx
+++ b/main/basic/source/comp/buffer.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * 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
@@ -7,20 +7,18 @@
  * 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
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
-
-
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_basic.hxx"
 
@@ -31,7 +29,7 @@
 const static sal_uInt32 UP_LIMIT=0xFFFFFF00L;
 
 // Der SbiBuffer wird in Inkrements von mindestens 16 Bytes erweitert.
-// Dies ist notwendig, da viele Klassen von einer Pufferlaenge
+// Dies ist notwendig, da viele Klassen von einer Pufferlänge
 // von x*16 Bytes ausgehen.
 
 SbiBuffer::SbiBuffer( SbiParser* p, short n )
@@ -52,7 +50,7 @@ SbiBuffer::~SbiBuffer()
 }
 
 // Rausreichen des Puffers
-// Dies fuehrt zur Loeschung des Puffers!
+// Dies führt zur Löschung des Puffers!
 
 char* SbiBuffer::GetBuffer()
 {
@@ -63,7 +61,7 @@ char* SbiBuffer::GetBuffer()
 }
 
 // Test, ob der Puffer n Bytes aufnehmen kann.
-// Im Zweifelsfall wird er vergroessert
+// Im Zweifelsfall wird er vergrössert
 
 sal_Bool SbiBuffer::Check( sal_uInt16 n )
 {
@@ -96,7 +94,7 @@ sal_Bool SbiBuffer::Check( sal_uInt16 n )
        return sal_True;
 }
 
-// Angleich des Puffers auf die uebergebene Byte-Grenze
+// Angleich des Puffers auf die übergebene Byte-Grenze
 
 void SbiBuffer::Align( sal_Int32 n )
 {
@@ -132,7 +130,7 @@ void SbiBuffer::Patch( sal_uInt32 off, sal_uInt32 val )
 }
 
 // Forward References auf Labels und Prozeduren
-// bauen eine Kette auf. Der Anfang der Kette ist beim uebergebenen
+// bauen eine Kette auf. Der Anfang der Kette ist beim übergebenen
 // Parameter, das Ende der Kette ist 0.
 
 void SbiBuffer::Chain( sal_uInt32 off )
@@ -147,7 +145,7 @@ void SbiBuffer::Chain( sal_uInt32 off )
                {
                        ip = (sal_uInt8*) pBuf + i;
                        sal_uInt8* pTmp = ip;
-                       i =  *pTmp++; i |= *pTmp++ << 8; i |= *pTmp++ << 16; i 
|= *pTmp++ << 24;
+                               i =  *pTmp++; i |= *pTmp++ << 8; i |= *pTmp++ 
<< 16; i |= *pTmp++ << 24;
 
                        if( i >= nOff )
                        {
@@ -207,7 +205,7 @@ sal_Bool SbiBuffer::operator +=( sal_uInt32 n )
                if ( operator +=( n1 ) && operator +=( n2 ) )
                        return sal_True;
                return sal_True;
-       } 
+       }
        return sal_False;
 }
 
@@ -216,7 +214,6 @@ sal_Bool SbiBuffer::operator +=( sal_Int32 n )
        return operator +=( (sal_uInt32) n );
 }
 
-
 sal_Bool SbiBuffer::operator +=( const String& n )
 {
        sal_uInt16 l = n.Len() + 1;
@@ -242,5 +239,4 @@ sal_Bool SbiBuffer::Add( const void* p, sal_uInt16 len )
        } else return sal_False;
 }
 
-
-
+/* vim: set noet sw=4 ts=4: */
diff --git a/main/basic/source/comp/exprgen.cxx 
b/main/basic/source/comp/exprgen.cxx
index 2e766f908c..1afa3716eb 100644
--- a/main/basic/source/comp/exprgen.cxx
+++ b/main/basic/source/comp/exprgen.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * 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
@@ -7,31 +7,29 @@
  * 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
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
-
-
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_basic.hxx"
 
 #include "sbcomp.hxx"
 #include "expr.hxx"
 
-// Umsetztabelle fuer Token-Operatoren und Opcodes
+// Umsetztabelle für Token-Operatoren und Opcodes
 
 typedef struct {
-               SbiToken  eTok;                                 // Token
-               SbiOpcode eOp;                                  // Opcode
+               SbiToken eTok; // Token
+               SbiOpcode eOp; // Opcode
 } OpTable;
 
 static OpTable aOpTable [] = {
@@ -57,8 +55,8 @@ static OpTable aOpTable [] = {
        { NEG,  _NEG },
        { CAT,  _CAT },
        { LIKE, _LIKE },
-       { IS,   _IS },
-       { NIL,  _NOP }};
+       { IS,   _IS },
+       { NIL,  _NOP }};
 
 // Ausgabe eines Elements
 void SbiExprNode::Gen( RecursiveMode eRecMode )
@@ -68,8 +66,8 @@ void SbiExprNode::Gen( RecursiveMode eRecMode )
                switch( GetType() )
                {
                        case SbxEMPTY:   pGen->Gen( _EMPTY ); break;
-                       case SbxINTEGER: pGen->Gen( _CONST,  (short) nVal ); 
break;
-                       case SbxSTRING:  
+                       case SbxINTEGER: pGen->Gen( _CONST, (short) nVal ); 
break;
+                       case SbxSTRING:
                        {
                                sal_uInt16 nStringId = 
pGen->GetParser()->aGblStrings.Add( aStrVal, sal_True );
                                pGen->Gen( _SCONST, nStringId ); break;
@@ -86,9 +84,9 @@ void SbiExprNode::Gen( RecursiveMode eRecMode )
                SbiExprNode* pWithParent_ = NULL;
                SbiOpcode eOp;
                if( aVar.pDef->GetScope() == SbPARAM )
-        {
-            eOp = _PARAM;
-            if( 0 == aVar.pDef->GetPos() )
+               {
+                       eOp = _PARAM;
+                       if( 0 == aVar.pDef->GetPos() )
                        {
                                bool bTreatFunctionAsParam = true;
                                if( eRecMode == FORCE_CALL )
@@ -103,21 +101,21 @@ void SbiExprNode::Gen( RecursiveMode eRecMode )
                                if( !bTreatFunctionAsParam )
                                        eOp = aVar.pDef->IsGlobal() ? _FIND_G : 
_FIND;
                        }
-        }
-               // AB: 17.12.1995, Spezialbehandlung fuer WITH
+               }
+               // AB: 17.12.1995, Spezialbehandlung für WITH
                else if( (pWithParent_ = GetWithParent()) != NULL )
                {
-                       eOp = _ELEM;                    // .-Ausdruck in WITH
+                       eOp = _ELEM; // .-Ausdruck in WITH
                }
                else
                {
-            eOp = ( aVar.pDef->GetScope() == SbRTL ) ? _RTL : 
-                (aVar.pDef->IsGlobal() ? _FIND_G : _FIND);
+                       eOp = ( aVar.pDef->GetScope() == SbRTL ) ? _RTL :
+                               (aVar.pDef->IsGlobal() ? _FIND_G : _FIND);
                }
 
                if( eOp == _FIND )
                {
-       
+
                        SbiProcDef* pProc = aVar.pDef->GetProcDef();
                        if ( pGen->GetParser()->bClassModule )
                                eOp = _FIND_CM;
@@ -177,7 +175,7 @@ void SbiExprNode::GenElement( SbiOpcode eOp )
                nId |= 0x8000;
                aVar.pPar->Gen();
        }
-               
+
        pGen->Gen( eOp, nId, sal::static_int_cast< sal_uInt16 >( GetType() ) );
 
        if( aVar.pvMorePar )
@@ -194,7 +192,7 @@ void SbiExprNode::GenElement( SbiOpcode eOp )
 }
 
 // Erzeugen einer Argv-Tabelle
-// Das erste Element bleibt immer frei fuer Returnwerte etc.
+// Das erste Element bleibt immer frei für Returnwerte etc.
 // Siehe auch SbiProcDef::SbiProcDef() in symtbl.cxx
 
 void SbiExprList::Gen()
@@ -218,10 +216,10 @@ void SbiExprList::Gen()
                                // AB 10.1.96: Typanpassung bei named -> 
passenden Parameter suchen
                                if( pProc )
                                {
-                                       // Vorerst: Error ausloesen
+                                       // Vorerst: Error auslösen
                                        pParser->Error( SbERR_NO_NAMED_ARGS );
 
-                                       // Spaeter, wenn Named Args bei DECLARE 
moeglich
+                                       // Später, wenn Named Args bei DECLARE 
möglich
                                        //for( sal_uInt16 i = 1 ; i < nParAnz ; 
i++ )
                                        //{
                                        //      SbiSymDef* pDef = pPool->Get( i 
);
@@ -249,8 +247,8 @@ void SbiExprList::Gen()
 
 void SbiExpression::Gen( RecursiveMode eRecMode )
 {
-       // AB: 17.12.1995, Spezialbehandlung fuer WITH
-       // Wenn pExpr == .-Ausdruck in With, zunaechst Gen fuer Basis-Objekt
+       // AB: 17.12.1995, Spezialbehandlung für WITH
+       // Wenn pExpr == .-Ausdruck in With, zunächst Gen für Basis-Objekt
        pExpr->Gen( eRecMode );
        if( bByVal )
                pParser->aGen.Gen( _BYVAL );
@@ -264,3 +262,4 @@ void SbiExpression::Gen( RecursiveMode eRecMode )
        }
 }
 
+/* vim: set noet sw=4 ts=4: */
diff --git a/main/basic/source/comp/io.cxx b/main/basic/source/comp/io.cxx
index 66a6330161..bc00556afa 100644
--- a/main/basic/source/comp/io.cxx
+++ b/main/basic/source/comp/io.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * 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
@@ -7,24 +7,21 @@
  * 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
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
-
-
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_basic.hxx"
 
-
 #include <tools/stream.hxx>
 #include "sbcomp.hxx"
 #include "iosys.hxx"
@@ -49,7 +46,7 @@ sal_Bool SbiParser::Channel( sal_Bool bAlways )
        return bRes;
 }
 
-// Fuer PRINT und WRITE wird bei Objektvariablen versucht,
+// Für PRINT und WRITE wird bei Objektvariablen versucht,
 // die Default-Property anzusprechen.
 
 // PRINT
@@ -57,7 +54,7 @@ sal_Bool SbiParser::Channel( sal_Bool bAlways )
 void SbiParser::Print()
 {
        sal_Bool bChan = Channel();
-       // Die Ausdruecke zum Drucken:
+       // Die Ausdrücke zum drucken:
        while( !bAbort )
        {
                if( !IsEoln( Peek() ) )
@@ -88,7 +85,7 @@ void SbiParser::Print()
 void SbiParser::Write()
 {
        sal_Bool bChan = Channel();
-       // Die Ausdruecke zum Drucken:
+       // Die Ausdrücke zum drucken:
        while( !bAbort )
        {
                SbiExpression* pExpr = new SbiExpression( this );
@@ -168,7 +165,7 @@ void SbiParser::LineInput()
        pExpr->Gen();
        aGen.Gen( _LINPUT );
        delete pExpr;
-       aGen.Gen( _CHAN0 );             // ResetChannel() nicht mehr in 
StepLINPUT()
+       aGen.Gen( _CHAN0 ); // ResetChannel() nicht mehr in StepLINPUT()
 }
 
 // INPUT
@@ -199,7 +196,7 @@ void SbiParser::Input()
                else break;
        }
        delete pExpr;
-       aGen.Gen( _CHAN0 );             // ResetChannel() nicht mehr in 
StepINPUT()
+       aGen.Gen( _CHAN0 ); // ResetChannel() nicht mehr in StepINPUT()
 }
 
 // OPEN stringexpr FOR mode ACCCESS access mode AS Channel [Len=n]
@@ -214,7 +211,7 @@ void SbiParser::Open()
        switch( Next() )
        {
                case INPUT:
-                       nMode = STREAM_READ;  nFlags |= SBSTRM_INPUT; break;
+                       nMode = STREAM_READ; nFlags |= SBSTRM_INPUT; break;
                case OUTPUT:
                        nMode = STREAM_WRITE | STREAM_TRUNC; nFlags |= 
SBSTRM_OUTPUT; break;
                case APPEND:
@@ -231,7 +228,7 @@ void SbiParser::Open()
                Next();
                eTok = Next();
                // #27964# Nur STREAM_READ,STREAM_WRITE-Flags in nMode 
beeinflussen
-               nMode &= ~(STREAM_READ | STREAM_WRITE);         // loeschen
+               nMode &= ~(STREAM_READ | STREAM_WRITE);         // löschen
                if( eTok == READ )
                {
                        if( Peek() == WRITE )
@@ -291,8 +288,8 @@ void SbiParser::Open()
                }
        }
        if( !pLen ) pLen = new SbiExpression( this, 128, SbxINTEGER );
-       // Der Stack fuer den OPEN-Befehl sieht wie folgt aus:
-       // Blocklaenge
+       // Der Stack für den OPEN-Befehl sieht wie folgt aus:
+       // Blocklänge
        // Kanalnummer
        // Dateiname
        pLen->Gen();
@@ -351,4 +348,4 @@ void SbiParser::Close()
        }
 }
 
-
+/* vim: set noet sw=4 ts=4: */
diff --git a/main/basic/source/comp/scanner.cxx 
b/main/basic/source/comp/scanner.cxx
index 6e712bd367..a593be83e8 100644
--- a/main/basic/source/comp/scanner.cxx
+++ b/main/basic/source/comp/scanner.cxx
@@ -256,7 +256,7 @@ sal_Bool SbiScanner::NextSym()
                        }
                }
 
-               // Abschliessendes '_' durch Space ersetzen, wenn Zeilenende 
folgt
+               // Abschließendes '_' durch Space ersetzen, wenn Zeilenende 
folgt
                // (sonst falsche Zeilenfortsetzung)
                if(     !bUsedForHilite && !*pLine && *(pLine-1) == '_' )
                {
@@ -265,7 +265,7 @@ sal_Bool SbiScanner::NextSym()
                }
                // Typkennung?
                // Das Ausrufezeichen bitte nicht testen, wenn
-               // danach noch ein Symbol anschliesst
+               // danach noch ein Symbol anschließt
                else if( *pLine != '!' || !BasicSimpleCharClass::isAlpha( 
pLine[ 1 ], bCompatible ) )
                {
                        SbxDataType t = GetSuffixType( *pLine );
@@ -378,7 +378,7 @@ sal_Bool SbiScanner::NextSym()
                //char *cmp = "0123456789ABCDEF";
                sal_Unicode base = 16;
                sal_Unicode ndig = 8;
-               sal_Unicode xch  = *pLine++ & 0xFF; nCol++;
+               sal_Unicode xch = *pLine++ & 0xFF; nCol++;
                switch( toupper( xch ) )
                {
                        case 'O':
@@ -446,9 +446,9 @@ sal_Bool SbiScanner::NextSym()
                                if( *pLine != cSep || cSep == ']' ) break;
                        } else aError = cSep, GenError( SbERR_EXPECTED );
                }
-               // If VBA Interop then doesn't eat the [] chars
+               // If VBA Interop then don't eat the [] chars
                if ( cSep == ']' && bVBASupportOn )
-                       aSym = aLine.copy( n - 1, nCol - n  + 1);
+                       aSym = aLine.copy( n - 1, nCol - n + 1);
                else
                        aSym = aLine.copy( n, nCol - n - 1 );
                // Doppelte Stringbegrenzer raus
@@ -467,7 +467,7 @@ sal_Bool SbiScanner::NextSym()
                if( cSep != ']' )
                        eScanType = ( cSep == '#' ) ? SbxDATE : SbxSTRING;
        }
-       // ungueltige Zeichen:
+       // ungültige Zeichen:
        else if( ( *pLine & 0xFF ) >= 0x7F )
        {
                GenError( SbERR_SYNTAX ); pLine++; nCol++;
@@ -489,7 +489,7 @@ sal_Bool SbiScanner::NextSym()
        nCol2 = nCol-1;
 
 PrevLineCommentLbl:
-       // Kommentar?
+       // Comment?
        if( bPrevLineExtentsComment || (eScanType != SbxSTRING &&
                ( aSym.GetBuffer()[0] == '\'' || aSym.EqualsIgnoreCaseAscii( 
"REM" ) ) ) )
        {
diff --git a/main/codemaker/source/codemaker/options.cxx 
b/main/codemaker/source/codemaker/options.cxx
index 3e6f56a85d..6d98287742 100644
--- a/main/codemaker/source/codemaker/options.cxx
+++ b/main/codemaker/source/codemaker/options.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * 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
@@ -7,20 +7,18 @@
  * 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
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
-
-
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_codemaker.hxx"
 
@@ -30,22 +28,22 @@ using namespace rtl;
 
 Options::Options()
 {
-}      
+}
 
 Options::~Options()
 {
-       
+
 }
 
 const OString& Options::getProgramName() const
 {
        return m_program;
-}      
+}
 
 sal_Bool Options::isValid(const OString& option)
 {
-       return (m_options.count(option) > 0);   
-}      
+       return (m_options.count(option) > 0);
+}
 
 const OString Options::getOption(const OString& option)
        throw( IllegalArgument )
@@ -61,35 +59,36 @@ const OString Options::getOption(const OString& option)
 
 const OptionMap& Options::getOptions()
 {
-       return m_options;       
-}      
+       return m_options;
+}
 
 const OString Options::getInputFile(sal_uInt16 index)
        throw( IllegalArgument )
 {
        if (index < m_inputFiles.size())
        {
-               return m_inputFiles[index];             
+               return m_inputFiles[index];
        } else
        {
                throw IllegalArgument("index is out of bound.");
        }
-}      
+}
 
 const StringVector& Options::getInputFiles()
 {
-       return m_inputFiles;    
-}      
-       
+       return m_inputFiles;
+}
+
 OString Options::getExtraInputFile(sal_uInt16 index) const
        throw( IllegalArgument )
 {
        if (index < m_extra_input_files.size())
        {
-               return m_extra_input_files[index];              
+               return m_extra_input_files[index];
        } else
        {
                throw IllegalArgument("index is out of bound.");
        }
-}      
+}
 
+/* vim: set noet sw=4 ts=4: */
diff --git a/main/framework/source/jobs/jobdata.cxx 
b/main/framework/source/jobs/jobdata.cxx
index f81950ce2c..298f46bf6a 100644
--- a/main/framework/source/jobs/jobdata.cxx
+++ b/main/framework/source/jobs/jobdata.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * 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
@@ -7,20 +7,18 @@
  * 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
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
-
-
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_framework.hxx"
 
@@ -53,7 +51,7 @@
 namespace framework{
 
 //________________________________
-//  exported const
+// exported const
 
 const sal_Char* JobData::JOBCFG_ROOT              = 
"/org.openoffice.Office.Jobs/Jobs/"   ;
 const sal_Char* JobData::JOBCFG_PROP_SERVICE      = "Service"                  
           ;
@@ -79,10 +77,10 @@ const sal_Char* JobData::PROP_SERVICE             = 
"Service"
 const sal_Char* JobData::PROP_CONTEXT             = "Context"                  
           ;
 
 //________________________________
-//     non exported definitions
+// non exported definitions
 
 //________________________________
-//     declarations
+// declarations
 
 //________________________________
 /**
@@ -159,7 +157,7 @@ JobData::~JobData()
 //________________________________
 /**
     @short      initialize this instance as a job with configuration
-    @descr      They given alias can be used to address some configuraton data.
+    @descr      They given alias can be used to address some configuration 
data.
                 We read it and fill our internal structures. Of course old 
informations
                 will be lost doing so.
 
@@ -256,13 +254,13 @@ void JobData::setService( const ::rtl::OUString& sService 
)
 /**
     @short      initialize this instance with new job values.
     @descr      It reads automatically all properties of the specified
-                job (using it's alias name) and "register it" for the
+                job (using its alias name) and "register it" for the
                 given event. This registration will not be validated against
                 the underlying configuration! (That must be done from outside.
                 Because the caller must have the configuration already open to
                 get the values for sEvent and sAlias! And doing so it can 
perform
-                only, if the time stanp values are readed outside too.
-                Further it make no sense to initialize and start a disabled 
job.
+                only, if the time stamp values are read outside too.
+                Further it makes no sense to initialize and start a disabled 
job.
                 So this initialization method will be called for enabled jobs 
only.)
 
     @param      sEvent
@@ -347,7 +345,7 @@ void JobData::setJobConfig( const css::uno::Sequence< 
css::beans::NamedValue >&
 
 //________________________________
 /**
-    @short      set a new excution result
+    @short      set a new execution result
     @descr      Every executed job can have returned a result.
                 We set it here, so our user can use it may be later.
                 But the outside code can use it too, to analyze it and
@@ -542,7 +540,7 @@ void JobData::disableJob()
 
     // update the configuration
     // It doesn't matter if this config object was already opened before.
-    // It doesn nothing here then ... or it change the mode automatically, if
+    // It does nothing here then ... or it change the mode automatically, if
     // it was opened using another one before.
     ::rtl::OUStringBuffer sKey(256);
     sKey.appendAscii(JobData::EVENTCFG_ROOT                       );
@@ -619,23 +617,23 @@ void JobData::appendEnabledJobsForEvent( const 
css::uno::Reference< css::lang::X
  */
 sal_Bool JobData::hasCorrectContext(const ::rtl::OUString& rModuleIdent) const
 {
-    sal_Int32 nContextLen  = m_sContext.getLength();
-    sal_Int32 nModuleIdLen = rModuleIdent.getLength();
+       sal_Int32 nContextLen = m_sContext.getLength();
+       sal_Int32 nModuleIdLen = rModuleIdent.getLength();
 
-    if ( nContextLen == 0 )
-        return sal_True;
+       if ( nContextLen == 0 )
+               return sal_True;
 
-    if ( nModuleIdLen > 0 )
-    {
-        sal_Int32 nIndex = m_sContext.indexOf( rModuleIdent );
-        if ( nIndex >= 0 && ( nIndex+nModuleIdLen <= nContextLen ))
+       if ( nModuleIdLen > 0 )
+       {
+               sal_Int32 nIndex = m_sContext.indexOf( rModuleIdent );
+               if ( nIndex >= 0 && ( nIndex+nModuleIdLen <= nContextLen ))
        {
-           ::rtl::OUString sContextModule = m_sContext.copy( nIndex, 
nModuleIdLen );
-           return sContextModule.equals( rModuleIdent );
+               ::rtl::OUString sContextModule = m_sContext.copy( nIndex, 
nModuleIdLen );
+               return sContextModule.equals( rModuleIdent );
+       }
        }
-    }
 
-    return sal_False;
+       return sal_False;
 }
 
 //________________________________
@@ -719,7 +717,7 @@ css::uno::Sequence< ::rtl::OUString > 
JobData::getEnabledJobsForEvent( const css
 //________________________________
 /**
     @short      reset all internal structures
-    @descr      If somehwere recycle this instance, he can switch from one
+    @descr      If somewhere recycle this instance, he can switch from one
                 using mode to another one. But then we have to reset all 
currently
                 used informations. Otherwise we mix it and they can make 
trouble.
 
@@ -744,3 +742,5 @@ void JobData::impl_reset()
 }
 
 } // namespace framework
+
+/* vim: set noet sw=4 ts=4: */

Reply via email to