summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-02-03 14:01:31 +0100
committerThomas Arnhold <thomas@arnhold.org>2014-02-03 14:01:40 +0100
commit326bec33e0a08123d716b9d2a06884368a8f07eb (patch)
tree663c513af4e3e7078a858d9fb7da3afb732e6d77
parentd271e5fd87dc11512f4be244bf6e7eea1769c62e (diff)
some more continuous corrections
-rw-r--r--basic/source/runtime/runtime.cxx2
-rw-r--r--basic/source/sbx/sbxscan.cxx2
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_field.xsl2
-rw-r--r--include/unotools/fontcvt.hxx4
-rw-r--r--sc/source/ui/view/printfun.cxx2
-rw-r--r--sd/source/filter/eppt/eppt.cxx2
-rw-r--r--sw/qa/extras/ooxmlimport/ooxmlimport.cxx4
-rw-r--r--sw/qa/extras/rtfimport/rtfimport.cxx2
-rw-r--r--sw/source/filter/ww8/wrtw8sty.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par3.cxx4
-rw-r--r--vcl/source/window/split.cxx6
-rw-r--r--writerfilter/source/dmapper/DomainMapper.cxx2
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.hxx2
14 files changed, 19 insertions, 19 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 8e51eb0fe3c0..83e81e6cca06 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -983,7 +983,7 @@ SbMethod* SbiRuntime::GetCaller()
// Stacks
-// The expression-stack is available for the continous evaluation
+// The expression-stack is available for the continuous evaluation
// of expressions.
void SbiRuntime::PushVar( SbxVariable* pVar )
diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx
index 6d39ba772466..43620d3d4668 100644
--- a/basic/source/sbx/sbxscan.cxx
+++ b/basic/source/sbx/sbxscan.cxx
@@ -916,7 +916,7 @@ void SbxValue::Format( OUString& rRes, const OUString* pFmt ) const
// Remark: For performance reasons there's only ONE BasicFormater-
// object created and 'stored', so that the expensive resource-
// loading is saved (for country-specific predefined outputs,
- // e. g. "On/Off") and the continous string-creation
+ // e. g. "On/Off") and the continuous string-creation
// operations, too.
// BUT: therefore this code is NOT multithreading capable!
diff --git a/filter/source/xslt/export/wordml/ooo2wordml_field.xsl b/filter/source/xslt/export/wordml/ooo2wordml_field.xsl
index eb1eb69bc7c0..9ea64189212e 100644
--- a/filter/source/xslt/export/wordml/ooo2wordml_field.xsl
+++ b/filter/source/xslt/export/wordml/ooo2wordml_field.xsl
@@ -354,7 +354,7 @@ $field_number_format_style ='壹, 贰, 叁, ...' ">
</w:fldSimple>
</xsl:template>
<xsl:template name="field_convert_linebreak">
- <!-- this template convert the linebreak (&#x0A; and &#x0D;) in continous text to Ms word element<w:br/> -->
+ <!-- this template convert the linebreak (&#x0A; and &#x0D;) in continuous text to Ms word element<w:br/> -->
<xsl:param name="field_input_text"/>
<xsl:if test="not (contains($field_input_text,'&#x0A;'))">
<w:t>
diff --git a/include/unotools/fontcvt.hxx b/include/unotools/fontcvt.hxx
index 2beda5d8a77b..2a2310734669 100644
--- a/include/unotools/fontcvt.hxx
+++ b/include/unotools/fontcvt.hxx
@@ -54,9 +54,9 @@ public:
//Starts converting the string at position rIndex. It converts as much of
//the string that can be converted to the same symbol font and returns the
//name of that font. rIndex is modified to the last index that was
- //converted. Typically you call if continously until rIndex ==
+ //converted. Typically you call if continuously until rIndex ==
//rString.Len() and handle each section as separate 8bit strings using
- //separate fonts. Will return an empty string for a continous section
+ //separate fonts. Will return an empty string for a continuous section
//that has no possible mapping.
virtual OUString ConvertString(OUString &rString, sal_Int32 &rIndex) = 0;
virtual ~StarSymbolToMSMultiFont() {}
diff --git a/sc/source/ui/view/printfun.cxx b/sc/source/ui/view/printfun.cxx
index b509e2b9de63..9406a903fcc5 100644
--- a/sc/source/ui/view/printfun.cxx
+++ b/sc/source/ui/view/printfun.cxx
@@ -2598,7 +2598,7 @@ void ScPrintFunc::ApplyPrintSettings()
//--------------------------------------------------------------------
// rPageRanges = range for all tables
// nStartPage = rPageRanges starts at nStartPage
-// nDisplayStart = continious number for displaying the page number
+// nDisplayStart = continuous number for displaying the page number
long ScPrintFunc::DoPrint( const MultiSelection& rPageRanges,
long nStartPage, long nDisplayStart, bool bDoPrint,
diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx
index 34abbd67c702..99ec203736ad 100644
--- a/sd/source/filter/eppt/eppt.cxx
+++ b/sd/source/filter/eppt/eppt.cxx
@@ -783,7 +783,7 @@ sal_Bool PPTWriter::ImplCreateDocument()
// Bit 3 Use named show
// Bit 4 Browse mode on
// Bit 5 Kiosk mode on
- // Bit 7 loop continously
+ // Bit 7 loop continuously
// Bit ? show scrollbar
if ( ImplGetPropertyValue( OUString( "CustomShow" ) ) )
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 6bfe06a08735..d432f80fa2b9 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -517,7 +517,7 @@ DECLARE_OOXMLIMPORT_TEST(testN766487, "n766487.docx")
DECLARE_OOXMLIMPORT_TEST(testN693238, "n693238.docx")
{
/*
- * The problem was that a continous section break at the end of the doc caused the margins to be ignored.
+ * The problem was that a continuous section break at the end of the doc caused the margins to be ignored.
*
* xray ThisComponent.StyleFamilies.PageStyles.Default.LeftMargin ' was 2000, should be 635
*/
@@ -682,7 +682,7 @@ DECLARE_OOXMLIMPORT_TEST(testN778140, "n778140.docx")
DECLARE_OOXMLIMPORT_TEST(testN778828, "n778828.docx")
{
/*
- * The problem was that a page break after a continous section break caused
+ * The problem was that a page break after a continuous section break caused
* double page break on title page.
*/
uno::Reference<frame::XModel> xModel(mxComponent, uno::UNO_QUERY);
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx b/sw/qa/extras/rtfimport/rtfimport.cxx
index 66bd7ef1cd36..0289ea2ed3f8 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -939,7 +939,7 @@ DECLARE_RTFIMPORT_TEST(testFdo58646line, "fdo58646line.rtf")
DECLARE_RTFIMPORT_TEST(testFdo58646, "fdo58646.rtf")
{
- // Page break was ignored inside a continous section, on title page.
+ // Page break was ignored inside a continuous section, on title page.
CPPUNIT_ASSERT_EQUAL(2, getPages());
}
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx b/sw/source/filter/ww8/wrtw8sty.cxx
index 363a4717c452..ab89a949577c 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -1715,7 +1715,7 @@ void MSWordExportBase::SectionProperties( const WW8_SepInfo& rSepInfo, WW8_PdAtt
AttrOutput().OutputStyleItemSet( aSet, true, bOutPgDscSet );
bOutputStyleItemSet = true;
- //Cannot export as normal page framedir, as continous sections
+ //Cannot export as normal page framedir, as continuous sections
//cannot contain any grid settings like proper sections
AttrOutput().SectionBiDi( FRMDIR_HORI_RIGHT_TOP == TrueFrameDirection( *rSepInfo.pSectionFmt ) );
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 285fabd6e77f..9db79ebd56a1 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -4485,7 +4485,7 @@ void wwSectionManager::InsertSegments()
// End getting the bounds of this section, quite a job eh?
SwSectionFmt *pRet = InsertSection(aSectPaM, *aIter);
- // The last section if continous is always unbalanced
+ // The last section if continuous is always unbalanced
if (pRet)
{
// Set the columns to be UnBalanced if that compatability option is set
diff --git a/sw/source/filter/ww8/ww8par3.cxx b/sw/source/filter/ww8/ww8par3.cxx
index 9a7440a70d84..ff6c1759436d 100644
--- a/sw/source/filter/ww8/ww8par3.cxx
+++ b/sw/source/filter/ww8/ww8par3.cxx
@@ -1181,7 +1181,7 @@ WW8ListManager::WW8ListManager(SvStream& rSt_, SwWW8ImplReader& rReader_)
i.e. create a simple list in 2000 and open it in 97 and 97 will
claim (correctly) that it is an outline list. We can set our
- continous flag in these lists to store this information.
+ continuous flag in these lists to store this information.
*/
SwNumRule* pMyNumRule = CreateNextRule(
aLST.bSimpleList || (aBits1 & 0x10));
@@ -1552,7 +1552,7 @@ SwNumRule* WW8ListManager::GetNumRuleForActivation(sal_uInt16 nLFOPosition,
#i1869#
If this list has had its bits set in word 2000 to pretend that it is a
simple list from the point of view of the user, then it is almost
- certainly a simple continous list, and we will try to keep it like that.
+ certainly a simple continuous list, and we will try to keep it like that.
Otherwise when we save again it will be shown as the true outline list
that it is, confusing the user that just wanted what they thought was a
simple list. On the otherhand it is possible that some of the other levels
diff --git a/vcl/source/window/split.cxx b/vcl/source/window/split.cxx
index 3ed8c0d86c97..9d57294e9815 100644
--- a/vcl/source/window/split.cxx
+++ b/vcl/source/window/split.cxx
@@ -394,10 +394,10 @@ void Splitter::ImplKbdTracking( KeyCode aKeyCode )
Point aNewPos;
Size aSize = mpRefWin->GetOutputSize();
Point aPos = GetPosPixel();
- // depending on the position calc allows continous moves or snaps to row/columns
- // continous mode is active when position is at the origin or end of the splitter
+ // depending on the position calc allows continuous moves or snaps to row/columns
+ // continuous mode is active when position is at the origin or end of the splitter
// otherwise snap mode is active
- // default here is snap, holding shift sets continous mode
+ // default here is snap, holding shift sets continuous mode
if( mbHorzSplit )
aNewPos = Point( ImplSplitterActive() ? aPos.X() : mnSplitPos, aKeyCode.IsShift() ? 0 : aSize.Height()/2);
else
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx
index fbca984d70f8..a80433946737 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1913,7 +1913,7 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, PropertyMapPtr rContext, SprmType
OSL_ENSURE(pSectionContext, "SectionContext unavailable!");
if(pSectionContext)
{
- // Ignore continous section break at the end of the document, if the previous section had the same type as well
+ // Ignore continuous section break at the end of the document, if the previous section had the same type as well
// It makes the importer loose margin settings with no benefit
SectionPropertyMap* pLastContext = m_pImpl->GetLastSectionContext();
int nPrevBreakType = 0;
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index 2c213d452648..a919614ae2e5 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -384,7 +384,7 @@ namespace writerfilter {
bool m_bSkipUnknown;
/// Font index <-> encoding map, *not* part of the parser state
std::map<int, rtl_TextEncoding> m_aFontEncodings;
- /// Maps the non-continious font indexes to the continuous dmapper indexes.
+ /// Maps the non-continuous font indexes to the continuous dmapper indexes.
std::vector<int> m_aFontIndexes;
/// Maps style indexes to style names.
std::map<int, OUString> m_aStyleNames;