diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-02-10 15:57:11 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-02-10 15:58:05 +0100 |
commit | 07d60f88f28d1f05c50458a66a24cefefa97a54a (patch) | |
tree | f4cfd70c24d14937d896e8b9ea2cd8838e430797 | |
parent | 65f620c99ae177efdf06993561ac019663ce74fd (diff) |
Typo: adress -> address
Change-Id: I8b6c66b6919f84c36e43a716d4d62fea5cde6568
-rw-r--r-- | extras/source/labels/labels.xml | 2 | ||||
-rw-r--r-- | framework/inc/dispatch/closedispatcher.hxx | 2 | ||||
-rw-r--r-- | include/formula/compiler.hrc | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/wrtw8sty.cxx | 4 | ||||
-rw-r--r-- | sw/source/filter/ww8/wrtww8.cxx | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/extras/source/labels/labels.xml b/extras/source/labels/labels.xml index babc00512ff6..f886178dc7bf 100644 --- a/extras/source/labels/labels.xml +++ b/extras/source/labels/labels.xml @@ -1588,7 +1588,7 @@ Avery J8950, L7950 - the labels are not aligned in a rectangular grid <measure>S;10160;5700;9906;5700;467;600;2;5;21000;29700</measure> </label> <label id="L58"> - <name>L7651 Mini Adress</name> + <name>L7651 Mini Address</name> <measure>S;4064;2117;3810;2117;467;1090;5;13;21000;29700</measure> </label> <label id="L59"> diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx index fff1ac4d35be..bb7a965d5b5f 100644 --- a/framework/inc/dispatch/closedispatcher.hxx +++ b/framework/inc/dispatch/closedispatcher.hxx @@ -281,7 +281,7 @@ class CloseDispatcher : // baseclasses ... order is necessary for right initiali context where its dispatched. Sometimes the start frame of the dispatch has to be closed itself (target=_self) ... sometimes it's parent frame has to be closed - BUT(!) it means a parent frame containing a top level - window. _top cant be used then for dispatch - because it adress TopFrames + window. _top cant be used then for dispatch - because it address TopFrames not frames containg top level windows. So normaly _magic (which btw does not exists at the moment .-) ) should be used. So we interpret target=<empty> as _magic ! diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 95abb545022e..1c03f6d50bc4 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -384,7 +384,7 @@ #define SC_OPCODE_ISPMT 386 #define SC_OPCODE_HYPERLINK 387 #define SC_OPCODE_INDIRECT_XL 388 /* See also INDIRECT for OOO variant */ -#define SC_OPCODE_ADDRESS_XL 389 /* See also ADRESS for OOO variant */ +#define SC_OPCODE_ADDRESS_XL 389 /* See also ADDRESS for OOO variant */ #define SC_OPCODE_GET_PIVOT_DATA 390 #define SC_OPCODE_EUROCONVERT 391 #define SC_OPCODE_NUMBERVALUE 392 diff --git a/sw/source/filter/ww8/wrtw8sty.cxx b/sw/source/filter/ww8/wrtw8sty.cxx index f631e65424f6..719c34ed4765 100644 --- a/sw/source/filter/ww8/wrtw8sty.cxx +++ b/sw/source/filter/ww8/wrtw8sty.cxx @@ -375,7 +375,7 @@ OString MSWordStyles::GetStyleId(sal_uInt16 nId) const static void impl_SkipOdd( ww::bytes* pO, sal_Size nTableStrmTell ) { if ( ( nTableStrmTell + pO->size() ) & 1 ) // Start auf gerader - pO->push_back( (sal_uInt8)0 ); // Adress + pO->push_back( (sal_uInt8)0 ); // Address } void WW8AttributeOutput::EndStyle() @@ -664,7 +664,7 @@ void WW8AttributeOutput::StartStyles() sal_uLong nCurPos = m_rWW8Export.pTableStrm->Tell(); if ( nCurPos & 1 ) // Start auf gerader { - m_rWW8Export.pTableStrm->WriteChar( (char)0 ); // Adress + m_rWW8Export.pTableStrm->WriteChar( (char)0 ); // Address ++nCurPos; } rFib.fcStshfOrig = rFib.fcStshf = nCurPos; diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx index 43a1cfae14b4..db97528b36d1 100644 --- a/sw/source/filter/ww8/wrtww8.cxx +++ b/sw/source/filter/ww8/wrtww8.cxx @@ -1261,7 +1261,7 @@ void WW8_WrPct::AppendPc(WW8_FC nStartFc, bool bIsUnicode) if ( !bIsUnicode ) { - nStartFc <<= 1; // Adress * 2 + nStartFc <<= 1; // Address * 2 nStartFc |= 0x40000000; // second last bit for non-Unicode } |