Kaydet (Commit) 643bbd60 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

typo: choise -> choice

üst 3bd26180
...@@ -89,7 +89,7 @@ public abstract class EnhancedComplexTestCase extends ComplexTestCase ...@@ -89,7 +89,7 @@ public abstract class EnhancedComplexTestCase extends ComplexTestCase
String sNEEDCHECK = (String)param.get( PropertyName.CHECK_NEED_TOOLS ); String sNEEDCHECK = (String)param.get( PropertyName.CHECK_NEED_TOOLS );
// TODO: I need to get the boolean value with get("name") because, if it is not given getBool() returns // TODO: I need to get the boolean value with get("name") because, if it is not given getBool() returns
// with a default of 'false' which is not very helpful if the default should be 'true' // with a default of 'false' which is not very helpful if the default should be 'true'
// maybe a getBoolean("name", true) could be a better choise. // maybe a getBoolean("name", true) could be a better choice.
if (sNEEDCHECK == null) if (sNEEDCHECK == null)
{ {
sNEEDCHECK = "false"; sNEEDCHECK = "false";
......
...@@ -140,7 +140,7 @@ public class GraphicalTestArguments ...@@ -140,7 +140,7 @@ public class GraphicalTestArguments
String sRECURSIVE = (String)param.get( PropertyName.DOC_COMPARATOR_INCLUDE_SUBDIRS ); String sRECURSIVE = (String)param.get( PropertyName.DOC_COMPARATOR_INCLUDE_SUBDIRS );
// TODO: I need to get the boolean value with get("name") because, if it is not given getBool() returns // TODO: I need to get the boolean value with get("name") because, if it is not given getBool() returns
// with a default of 'false' which is not very helpful if the default should be 'true' // with a default of 'false' which is not very helpful if the default should be 'true'
// maybe a getBoolean("name", true) could be a better choise. // maybe a getBoolean("name", true) could be a better choice.
if (sRECURSIVE == null) if (sRECURSIVE == null)
{ {
sRECURSIVE = "true"; sRECURSIVE = "true";
......
...@@ -157,7 +157,7 @@ public class ParameterHelper ...@@ -157,7 +157,7 @@ public class ParameterHelper
String sRECURSIVE = (String)getTestParameters().get( PropertyName.DOC_COMPARATOR_INCLUDE_SUBDIRS ); String sRECURSIVE = (String)getTestParameters().get( PropertyName.DOC_COMPARATOR_INCLUDE_SUBDIRS );
// TODO: I need to get the boolean value with get("name") because, if it is not given getBool() returns // TODO: I need to get the boolean value with get("name") because, if it is not given getBool() returns
// with a default of 'false' which is not very helpful if the default should be 'true' // with a default of 'false' which is not very helpful if the default should be 'true'
// maybe a getBoolean("name", true) could be a better choise. // maybe a getBoolean("name", true) could be a better choice.
if (sRECURSIVE == null) if (sRECURSIVE == null)
{ {
sRECURSIVE = "true"; sRECURSIVE = "true";
......
...@@ -950,7 +950,7 @@ IMPL_LINK( SdPublishingDlg, DesignHdl, RadioButton *, pButton ) ...@@ -950,7 +950,7 @@ IMPL_LINK( SdPublishingDlg, DesignHdl, RadioButton *, pButton )
return 0; return 0;
} }
// Clickhandler for the choise of one design // Clickhandler for the choice of one design
IMPL_LINK_NOARG(SdPublishingDlg, DesignSelectHdl) IMPL_LINK_NOARG(SdPublishingDlg, DesignSelectHdl)
{ {
sal_uInt16 nPos = pPage1_Designs->GetSelectEntryPos(); sal_uInt16 nPos = pPage1_Designs->GetSelectEntryPos();
......
...@@ -365,7 +365,7 @@ IMPL_LINK( SwAsciiFilterDlg, CharSetSelHdl, SvxTextEncodingBox*, pBox ) ...@@ -365,7 +365,7 @@ IMPL_LINK( SwAsciiFilterDlg, CharSetSelHdl, SvxTextEncodingBox*, pBox )
} }
else else
{ {
// restore old user choise (not the automatic!) // restore old user choice (not the automatic!)
m_pCRLF_RB->Check( m_pCRLF_RB->GetSavedValue() ); m_pCRLF_RB->Check( m_pCRLF_RB->GetSavedValue() );
m_pCR_RB->Check( m_pCR_RB->GetSavedValue() ); m_pCR_RB->Check( m_pCR_RB->GetSavedValue() );
m_pLF_RB->Check( m_pLF_RB->GetSavedValue() ); m_pLF_RB->Check( m_pLF_RB->GetSavedValue() );
......
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