[Libreoffice-commits] core.git: sw/source
Thomas Klausner
wiz at NetBSD.org
Sun Aug 9 11:29:05 PDT 2015
sw/source/filter/ww8/ww8toolbar.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 938a1b00332090e68cca44c99eb6f4adeedc1f00
Author: Thomas Klausner <wiz at NetBSD.org>
Date: Sun Aug 9 20:28:24 2015 +0200
Fix some typos in strings.
Change-Id: I7fb077c08dbfa3fe3f03941c7567dc65630cf266
diff --git a/sw/source/filter/ww8/ww8toolbar.cxx b/sw/source/filter/ww8/ww8toolbar.cxx
index 429d3b5..6460cc6 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() );
}
More information about the Libreoffice-commits
mailing list