Kaydet (Commit) 2dca0ccf authored tarafından Julien Nabet's avatar Julien Nabet

Fix typo recieved/received

Change-Id: I0c838f5c06ff26149113a9bbab970d314758c648
üst a97a16d3
...@@ -114,7 +114,7 @@ namespace dbaui ...@@ -114,7 +114,7 @@ namespace dbaui
sal_uInt16 m_nFormActionNestingLevel; // see enter-/leaveFormAction sal_uInt16 m_nFormActionNestingLevel; // see enter-/leaveFormAction
sal_Bool m_bLoadCanceled : 1; // the load was canceled somehow sal_Bool m_bLoadCanceled : 1; // the load was canceled somehow
bool m_bCannotSelectUnfiltered : 1; // recieved an DATA_CANNOT_SELECT_UNFILTERED error bool m_bCannotSelectUnfiltered : 1; // received an DATA_CANNOT_SELECT_UNFILTERED error
protected: protected:
class FormErrorHelper class FormErrorHelper
......
...@@ -162,7 +162,7 @@ namespace pcr ...@@ -162,7 +162,7 @@ namespace pcr
*/ */
void SAL_CALL dispose(); void SAL_CALL dispose();
/** sets the notification mode, so that notifications recieved from the controls are /** sets the notification mode, so that notifications received from the controls are
forwarded to our IControlContext either synchronously or asynchronously forwarded to our IControlContext either synchronously or asynchronously
@param _eMode @param _eMode
the new notification mode the new notification mode
......
...@@ -134,13 +134,13 @@ public class Helper { ...@@ -134,13 +134,13 @@ public class Helper {
// example: data = "firstData;secondData;;forthData" // example: data = "firstData;secondData;;forthData"
// => three tokens => missing one data because the imagine // => three tokens => missing one data because the imagine
// "thirdData" was not recieved by data.nextToken() // "thirdData" was not received by data.nextToken()
// Therefore here comes a special handling for empty datas // Therefore here comes a special handling for empty datas
boolean nextIsData = false; boolean nextIsData = false;
int dataCount = 0; int dataCount = 0;
while (data.hasMoreTokens()) { while (data.hasMoreTokens()) {
String myToken = data.nextToken(); String myToken = data.nextToken();
// if the "thirdData" will be recieved, myToken=";" but // if the "thirdData" will be received, myToken=";" but
// vData must add an empty String // vData must add an empty String
if (myToken.equals(";")){ if (myToken.equals(";")){
if (nextIsData ) { if (nextIsData ) {
......
...@@ -351,7 +351,7 @@ public class LinguisticExamples ...@@ -351,7 +351,7 @@ public class LinguisticExamples
public void processLinguServiceEvent( LinguServiceEvent aServiceEvent ) public void processLinguServiceEvent( LinguServiceEvent aServiceEvent )
{ {
//! do here whatever you think needs to be done depending //! do here whatever you think needs to be done depending
//! on the event recieved (e.g. trigger background spellchecking //! on the event received (e.g. trigger background spellchecking
//! or hyphenation again.) //! or hyphenation again.)
System.out.println("Listener called"); System.out.println("Listener called");
......
...@@ -780,7 +780,7 @@ ScFormulaCell::ScFormulaCell( const ScFormulaCell& rCell, ScDocument& rDoc, cons ...@@ -780,7 +780,7 @@ ScFormulaCell::ScFormulaCell( const ScFormulaCell& rCell, ScDocument& rDoc, cons
pCode = rCell.pCode->Clone(); pCode = rCell.pCode->Clone();
// set back any errors and recompile // set back any errors and recompile
// not in the Clipboard - it must keep the recieved error flag // not in the Clipboard - it must keep the received error flag
// Special Length=0: as bad cells are generated, then they are also retained // Special Length=0: as bad cells are generated, then they are also retained
if ( pCode->GetCodeError() && !pDocument->IsClipboard() && pCode->GetLen() ) if ( pCode->GetCodeError() && !pDocument->IsClipboard() && pCode->GetLen() )
{ {
......
...@@ -122,7 +122,7 @@ public: ...@@ -122,7 +122,7 @@ public:
//===== IAccessibleViewForwarderListener ================================ //===== IAccessibleViewForwarderListener ================================
/** A view forwarder change is signalled for instance when any of the /** A view forwarder change is signalled for instance when any of the
window events is recieved. Thus, instead of overloading the four window events is received. Thus, instead of overloading the four
windowResized... methods it will be sufficient in most cases just to windowResized... methods it will be sufficient in most cases just to
overload this method. overload this method.
*/ */
......
...@@ -53,7 +53,7 @@ class ChildrenManagerImpl; ...@@ -53,7 +53,7 @@ class ChildrenManagerImpl;
forwarder in the shape tree info.</p> forwarder in the shape tree info.</p>
<p>A children manager registers itself at the broadcaster passed to its <p>A children manager registers itself at the broadcaster passed to its
constructor and transforms/forwards the recieved events to the listeners constructor and transforms/forwards the received events to the listeners
of the also given context base. The transformation process includes of the also given context base. The transformation process includes
interpreting a <type>document::XEventListener</type>, the change from interpreting a <type>document::XEventListener</type>, the change from
XShape references to the associated XAccessible reference, and the XShape references to the associated XAccessible reference, and the
......
...@@ -726,7 +726,7 @@ LRESULT CALLBACK SalComWndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lPar ...@@ -726,7 +726,7 @@ LRESULT CALLBACK SalComWndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lPar
rDef = FALSE; rDef = FALSE;
break; break;
// If we get this message, because another GetMessage() call // If we get this message, because another GetMessage() call
// has recieved this message, we must post this message to // has received this message, we must post this message to
// us again, because in the other case we wait forever. // us again, because in the other case we wait forever.
case SAL_MSG_RELEASEWAITYIELD: case SAL_MSG_RELEASEWAITYIELD:
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment