summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8toolbar.cxx
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2015-08-09 20:28:24 +0200
committerThomas Klausner <wiz@NetBSD.org>2015-08-09 20:28:24 +0200
commit938a1b00332090e68cca44c99eb6f4adeedc1f00 (patch)
tree7be9ba6ab16659a348f258d8e0f73a66281057a7 /sw/source/filter/ww8/ww8toolbar.cxx
parent5e5dee3512f5b010b832fcf569d7a3eb60f0f62c (diff)
Fix some typos in strings.
Change-Id: I7fb077c08dbfa3fe3f03941c7567dc65630cf266
Diffstat (limited to 'sw/source/filter/ww8/ww8toolbar.cxx')
-rw-r--r--sw/source/filter/ww8/ww8toolbar.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/ww8toolbar.cxx b/sw/source/filter/ww8/ww8toolbar.cxx
index 429d3b5196b6..6460cc6c2525 100644
--- a/sw/source/filter/ww8/ww8toolbar.cxx
+++ b/sw/source/filter/ww8/ww8toolbar.cxx
@@ -214,7 +214,7 @@ void SwCTBWrapper::Print( FILE* fp )
for ( std::vector< Customization >::iterator it = rCustomizations.begin(); it != rCustomizations.end(); ++it, ++index )
{
- indent_printf(fp," Dumping custimization [%d]\n", static_cast< int >( index ));
+ indent_printf(fp," Dumping customization [%d]\n", static_cast< int >( index ));
Indent c;
it->Print(fp);
}
@@ -258,7 +258,7 @@ Customization::~Customization()
bool Customization::Read( SvStream &rS)
{
- SAL_INFO("sw.ww8","Custimization::Read() stream pos 0x" << std::hex << rS.Tell() );
+ SAL_INFO("sw.ww8","Customization::Read() stream pos 0x" << std::hex << rS.Tell() );
nOffSet = rS.Tell();
rS.ReadInt32( tbidForTBD ).ReadUInt16( reserved1 ).ReadUInt16( ctbds );
if ( tbidForTBD )
@@ -273,7 +273,7 @@ bool Customization::Read( SvStream &rS)
if (!aTBDelta.Read( rS ) )
return false;
customizationDataTBDelta.push_back( aTBDelta );
- // Only set the drop down for menu's associated with standard toolbar
+ // Only set the drop down for menus associated with standard toolbar
if ( aTBDelta.ControlDropsToolBar() && tbidForTBD == 0x25 )
pWrapper->InsertDropIndex( aTBDelta.CustomizationIndex() );
}