Tag: cws_src680_dr33 User: dr Date: 05/02/14 08:38:11 Modified: /dba/connectivity/source/drivers/file/ FPreparedStatement.cxx, FResultSet.cxx, fanalyzer.cxx, fcode.cxx, fcomp.cxx
Log: #i42367# remove non-ASCII characters from C++ sources File Changes: Directory: /dba/connectivity/source/drivers/file/ ================================================= File [changed]: FPreparedStatement.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/FPreparedStatement.cxx?r1=1.33&r2=1.33.18.1 Delta lines: +24 -24 --------------------- --- FPreparedStatement.cxx 21 Jan 2005 16:39:14 -0000 1.33 +++ FPreparedStatement.cxx 14 Feb 2005 16:38:04 -0000 1.33.18.1 @@ -2,9 +2,9 @@ * * $RCSfile: FPreparedStatement.cxx,v $ * - * $Revision: 1.33 $ + * $Revision: 1.33.18.1 $ * - * last change: $Author: kz $ $Date: 2005/01/21 16:39:14 $ + * last change: $Author: dr $ $Date: 2005/02/14 16:38:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -577,11 +577,11 @@ // Parameter substituieren (AssignValues und Kriterien): if (!m_xParamColumns->empty()) { - // Zun�chst AssignValues + // Zunaechst AssignValues USHORT nParaCount=0; // gibt die aktuelle Anzahl der bisher gesetzen Parameter an // Nach zu substituierenden Parametern suchen: - UINT16 nCount = m_aAssignValues.isValid() ? m_aAssignValues->size() : 1; // 1 ist wichtig f�r die Kriterien + UINT16 nCount = m_aAssignValues.isValid() ? m_aAssignValues->size() : 1; // 1 ist wichtig fuer die Kriterien for (UINT16 j = 1; j < nCount; j++) { UINT32 nParameter = (*m_aAssignValues).getParameterIndex(j); File [changed]: FResultSet.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/FResultSet.cxx?r1=1.91&r2=1.91.40.1 Delta lines: +11 -11 --------------------- --- FResultSet.cxx 22 Oct 2004 08:43:56 -0000 1.91 +++ FResultSet.cxx 14 Feb 2005 16:38:05 -0000 1.91.40.1 @@ -2,9 +2,9 @@ * * $RCSfile: FResultSet.cxx,v $ * - * $Revision: 1.91 $ + * $Revision: 1.91.40.1 $ * - * last change: $Author: rt $ $Date: 2004/10/22 08:43:56 $ + * last change: $Author: dr $ $Date: 2005/02/14 16:38:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -926,7 +926,7 @@ m_pTable->fetchRow(m_aEvaluateRow, m_pTable->getTableColumns().getBody(), sal_True,bRetrieveData || m_pSQLAnalyzer->hasRestriction()); if ((!m_bShowDeleted && m_aEvaluateRow->isDeleted()) || - (m_pSQLAnalyzer->hasRestriction() && //!bShowDeleted && m_aEvaluateRow->isDeleted() ||// keine Anzeige von geloeschten S�tzen + (m_pSQLAnalyzer->hasRestriction() && //!bShowDeleted && m_aEvaluateRow->isDeleted() ||// keine Anzeige von geloeschten Saetzen !m_pSQLAnalyzer->evaluateRestriction())) // Auswerten der Bedingungen { // naechsten Satz auswerten // aktuelle Zeile loeschen im Keyset @@ -1063,7 +1063,7 @@ m_nRowPos = 0; break; case IResultSetHelper::LAST: - // OSL_ENSURE(IsRowCountFinal(), "Fehler im Keyset!"); // mu� eingefroren sein, sonst Fehler beim SQLCursor + // OSL_ENSURE(IsRowCountFinal(), "Fehler im Keyset!"); // muss eingefroren sein, sonst Fehler beim SQLCursor m_nRowPos = m_pFileSet->size() - 1; break; case IResultSetHelper::RELATIVE: @@ -1076,7 +1076,7 @@ } // OffRange? - // Der FileCursor ist au�erhalb des gueltigen Bereichs, wenn + // Der FileCursor ist ausserhalb des gueltigen Bereichs, wenn // a.) m_nRowPos < 1 // b.) Ein KeySet besteht und m_nRowPos > m_pFileSet->size() if (m_nRowPos < 0 || (m_pFileSet->isFrozen() && eCursorPosition != IResultSetHelper::BOOKMARK && m_nRowPos >= (INT32)m_pFileSet->size() )) // && m_pFileSet->IsFrozen() @@ -1094,7 +1094,7 @@ // now set the bookmark for outside *(*m_aRow->begin()) = sal_Int32(m_nRowPos + 1); } - else // Index mu� weiter aufgebaut werden + else // Index muss weiter aufgebaut werden { // Zunaechst auf die letzte bekannte Zeile setzen if (!m_pFileSet->empty()) @@ -1227,7 +1227,7 @@ } } // delete pGuard; - // rMode = (!bShowDeleted && aStatus.IsSuccessful() && m_aRow->isDeleted()) ? // keine Anzeige von gel�schten S�tzen + // rMode = (!bShowDeleted && aStatus.IsSuccessful() && m_aRow->isDeleted()) ? // keine Anzeige von geloeschten Saetzen // OCursor::SQL_MOD_INVALID : OCursor::SQL_MOD_NONE; return sal_False; } @@ -1490,7 +1490,7 @@ INT32 nPrev_i; for(INT32 j= nMaxRow-1;j >= 0;j--) { - nPos = (*m_pFileSet)[j]; // aktuell zu l�schender Key + nPos = (*m_pFileSet)[j]; // aktuell zu loeschender Key if(!nWasAllwaysFound[j] && nPos) // nur falls noch nicht nach dieser Row gesucht wurde { ExecuteRow(IResultSetHelper::BOOKMARK,nPos,TRUE,FALSE); @@ -1529,7 +1529,7 @@ (*m_pFileSet)[nPrev_i] = 0; // und altes i merken nPrev_i = i; - nPos = nKey; // auf naechste g�ltige Position setzen + nPos = nKey; // auf naechste gueltige Position setzen nWasAllwaysFound[i] = 1; } } File [changed]: fanalyzer.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/fanalyzer.cxx?r1=1.20&r2=1.20.126.1 Delta lines: +25 -25 --------------------- --- fanalyzer.cxx 4 Sep 2003 08:26:11 -0000 1.20 +++ fanalyzer.cxx 14 Feb 2005 16:38:05 -0000 1.20.126.1 @@ -2,9 +2,9 @@ * * $RCSfile: fanalyzer.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.20.126.1 $ * - * last change: $Author: obo $ $Date: 2003/09/04 08:26:11 $ + * last change: $Author: dr $ $Date: 2005/02/14 16:38:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -242,15 +242,15 @@ OCodeStack aCodeStack; if (!rCodeList.size()) - return; // kein Pr�dikat + return; // kein Praedikat if (!rParameterColumns->size()) return; // keine Parameter - // Anlegen von Columns, die eine genauere Beschreibung f�r die enthalten + // Anlegen von Columns, die eine genauere Beschreibung fuer die enthalten ::vos::ORef<OSQLColumns> aNewParamColumns = new OSQLColumns(*rParameterColumns); - // Anlegen einer Testzeile, wird ben�tigt um die Parameter zu beschreiben + // Anlegen einer Testzeile, wird benoetigt um die Parameter zu beschreiben OValueRefRow aParameterRow = new OValueRefVector(rParameterColumns->size()); bindParameterRow(aParameterRow); @@ -265,7 +265,7 @@ aCodeStack.push(pOperand); else { - if (pOperator->getRequestedOperands() == 2) // bei zwei Operatoren ist es m�glich + if (pOperator->getRequestedOperands() == 2) // bei zwei Operatoren ist es moeglich { // einen Parameter weiter zu spezifizieren OOperandParam *pParam = PTR_CAST(OOperandParam,aCodeStack.top()); if (pParam) // Anpassen des ParameterTyps, wenn der linke Operand ein Attribut ist @@ -275,7 +275,7 @@ { Reference< XPropertySet> xCol; Reference< XIndexAccess>(m_aCompiler->getOrigColumns(),UNO_QUERY)->getByIndex(pLeft->getRowPos()) >>= xCol; - OSL_ENSURE(xCol.is(), "Ung�ltige Struktur"); + OSL_ENSURE(xCol.is(), "Ungueltige Struktur"); pParam->describe(xCol, aNewParamColumns); } } File [changed]: fcode.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/fcode.cxx?r1=1.23&r2=1.23.60.1 Delta lines: +34 -34 --------------------- --- fcode.cxx 2 Aug 2004 17:03:47 -0000 1.23 +++ fcode.cxx 14 Feb 2005 16:38:05 -0000 1.23.60.1 @@ -2,9 +2,9 @@ * * $RCSfile: fcode.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.23.60.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:03:47 $ + * last change: $Author: dr $ $Date: 2005/02/14 16:38:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -199,7 +199,7 @@ OSL_ASSERT("Fehler im Parse Tree"); } - // Parameter-Column aufsetzen mit defult typ, kann zu einem sp�teren Zeitpunkt �ber DescribeParameter + // Parameter-Column aufsetzen mit defult typ, kann zu einem spaeteren Zeitpunkt ueber DescribeParameter // genauer spezifiziert werden // Identitaet merken (hier eigentlich nicht erforderlich, aber aus File [changed]: fcomp.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/fcomp.cxx?r1=1.21&r2=1.21.60.1 Delta lines: +90 -90 --------------------- --- fcomp.cxx 2 Aug 2004 17:04:09 -0000 1.21 +++ fcomp.cxx 14 Feb 2005 16:38:05 -0000 1.21.60.1 @@ -2,9 +2,9 @@ * * $RCSfile: fcomp.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.21.60.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:04:09 $ + * last change: $Author: dr $ $Date: 2005/02/14 16:38:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -674,7 +674,7 @@ OCodeList::iterator aIter = rCodeList.begin(); if (!(*aIter)) - return sal_True; // kein Pr�dikat + return sal_True; // kein Praedikat for(;aIter != rCodeList.end();++aIter) { @@ -701,7 +701,7 @@ { OCodeList::iterator aIter = rCodeList.begin(); if (!(*aIter)) - return ; // kein Pr�dikat + return ; // kein Praedikat for(;aIter != rCodeList.end();++aIter) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
