Typo: adress -> address

Change-Id: I8b6c66b6919f84c36e43a716d4d62fea5cde6568
This commit is contained in:
Julien Nabet 2014-02-10 15:57:11 +01:00
parent 65f620c99a
commit 07d60f88f2
5 changed files with 6 additions and 6 deletions

View File

@ -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">

View File

@ -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 !

View File

@ -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

View File

@ -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;

View File

@ -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
}