[Libreoffice-commits] core.git: canvas/source chart2/source dbaccess/source framework/inc framework/source include/uno scp2/inc sc/source sd/source svtools/source UnoControls/inc xmloff/source
Andrea Gelmini
andrea.gelmini at gelma.net
Fri Apr 22 06:47:29 UTC 2016
UnoControls/inc/basecontrol.hxx | 2 +-
canvas/source/directx/dx_surfacebitmap.cxx | 2 +-
chart2/source/view/main/VDataSeries.cxx | 2 +-
dbaccess/source/core/dataaccess/ModelImpl.hxx | 2 +-
framework/inc/jobs/jobresult.hxx | 2 +-
framework/source/inc/loadenv/loadenvexception.hxx | 2 +-
include/uno/threadpool.h | 2 +-
sc/source/filter/inc/xehelper.hxx | 2 +-
sc/source/ui/vba/vbahyperlinks.cxx | 2 +-
scp2/inc/macros.inc | 2 +-
sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx | 2 +-
svtools/source/svhtml/htmlkywd.cxx | 2 +-
xmloff/source/chart/SchXMLChartContext.cxx | 2 +-
xmloff/source/chart/SchXMLExport.cxx | 2 +-
xmloff/source/draw/ximpbody.cxx | 2 +-
15 files changed, 15 insertions(+), 15 deletions(-)
New commits:
commit b2e86d2e26a7675b925b50b26e0ed4b3a946e9b9
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date: Thu Apr 21 23:21:13 2016 +0200
Fix typos
Change-Id: Iea11112a1bf1ff934de0e355b9e81979aa1966a3
Reviewed-on: https://gerrit.libreoffice.org/24286
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: jan iversen <jani at documentfoundation.org>
diff --git a/UnoControls/inc/basecontrol.hxx b/UnoControls/inc/basecontrol.hxx
index 6ea4bd1..3970e75 100644
--- a/UnoControls/inc/basecontrol.hxx
+++ b/UnoControls/inc/basecontrol.hxx
@@ -101,7 +101,7 @@ namespace unocontrols{
struct IMPL_MutexContainer
{
- // Is necassery to initialize "BaseControl" and make this class thread-safe.
+ // Is necessary to initialize "BaseControl" and make this class thread-safe.
::osl::Mutex m_aMutex;
};
diff --git a/canvas/source/directx/dx_surfacebitmap.cxx b/canvas/source/directx/dx_surfacebitmap.cxx
index f7a3dde..fac6d9e 100644
--- a/canvas/source/directx/dx_surfacebitmap.cxx
+++ b/canvas/source/directx/dx_surfacebitmap.cxx
@@ -292,7 +292,7 @@ namespace dxcanvas
{
// since clients will most probably draw directly
// to the GDI+ bitmap, we need to mark it as dirty
- // to ensure that the corrosponding dxsurface will
+ // to ensure that the corresponding dxsurface will
// be updated.
mbIsSurfaceDirty = true;
diff --git a/chart2/source/view/main/VDataSeries.cxx b/chart2/source/view/main/VDataSeries.cxx
index 1b4748f..83c58e4 100644
--- a/chart2/source/view/main/VDataSeries.cxx
+++ b/chart2/source/view/main/VDataSeries.cxx
@@ -117,7 +117,7 @@ void lcl_clearIfNoValuesButTextIsContained( VDataSequence& rData, const uno::Ref
if( !::rtl::math::isNan( rData.Doubles[i] ) )
return;
}
- //no double value is countained
+ //no double value is contained
//is there any text?
uno::Sequence< OUString > aStrings( DataSequenceToStringSequence( xDataSequence ) );
sal_Int32 nTextCount = aStrings.getLength();
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.hxx b/dbaccess/source/core/dataaccess/ModelImpl.hxx
index ca3003e..aca2f56 100644
--- a/dbaccess/source/core/dataaccess/ModelImpl.hxx
+++ b/dbaccess/source/core/dataaccess/ModelImpl.hxx
@@ -484,7 +484,7 @@ private:
css::uno::Reference< css::embed::XStorage >
impl_switchToStorage_throw( const css::uno::Reference< css::embed::XStorage >& _rxNewRootStorage );
- /** switches to the given document URL, which denotes the logical URL of the document, not necessariy the
+ /** switches to the given document URL, which denotes the logical URL of the document, not necessarily the
URL where the doc was loaded/recovered from
*/
void impl_switchToLogicalURL(
diff --git a/framework/inc/jobs/jobresult.hxx b/framework/inc/jobs/jobresult.hxx
index c4d515b..ef4c7cf 100644
--- a/framework/inc/jobs/jobresult.hxx
+++ b/framework/inc/jobs/jobresult.hxx
@@ -32,7 +32,7 @@ namespace framework{
/**
@short represent a result of a finished job execution
- @descr Such result instance transport all neccessarry
+ @descr Such result instance transport all necessary
data from the code place where the job was finished
to the outside code, where e.g. listener must be notified.
*/
diff --git a/framework/source/inc/loadenv/loadenvexception.hxx b/framework/source/inc/loadenv/loadenvexception.hxx
index ed7dda9..81dba45 100644
--- a/framework/source/inc/loadenv/loadenvexception.hxx
+++ b/framework/source/inc/loadenv/loadenvexception.hxx
@@ -46,7 +46,7 @@ class LoadEnvException
ID_UNSUPPORTED_CONTENT,
/** @short It was not possible to get access to global filter configuration.
- @descr Might som neccsessary services could not be created. */
+ @descr Might some necessary services could not be created. */
ID_NO_CONFIG_ACCESS,
/** @short Some data obtained from the filter configuration seems to incorrect.
diff --git a/include/uno/threadpool.h b/include/uno/threadpool.h
index c358a92..b875b4c 100644
--- a/include/uno/threadpool.h
+++ b/include/uno/threadpool.h
@@ -86,7 +86,7 @@ uno_threadpool_create() SAL_THROW_EXTERN_C();
called, BEFORE uno_threadpool_enter() is called and BEFORE a job for this
thread is put into the threadpool (avoid a race between this thread and
an incoming request/reply).
- For every call to uno_threadpool_attach, a corrosponding call to
+ For every call to uno_threadpool_attach, a corresponding call to
uno_threadpool_detach must be done.
@param hPool The bridge threadpool handle previously created by uno_threadpool_create.
diff --git a/sc/source/filter/inc/xehelper.hxx b/sc/source/filter/inc/xehelper.hxx
index 30eae8d..6b17b32 100644
--- a/sc/source/filter/inc/xehelper.hxx
+++ b/sc/source/filter/inc/xehelper.hxx
@@ -185,7 +185,7 @@ public:
/** Returns true, if a single HLINK record has been created. */
bool HasLinkRecord() const;
- /** Returns the craeted single HLINk record, or an empty reference. */
+ /** Returns the created single HLINk record, or an empty reference. */
XclExpHyperlinkRef GetLinkRecord();
/** Returns true, if multiple URLs have been processed. */
diff --git a/sc/source/ui/vba/vbahyperlinks.cxx b/sc/source/ui/vba/vbahyperlinks.cxx
index 6eb7d69..8e587dd 100644
--- a/sc/source/ui/vba/vbahyperlinks.cxx
+++ b/sc/source/ui/vba/vbahyperlinks.cxx
@@ -215,7 +215,7 @@ uno::Reference< excel::XHyperlink > SAL_CALL ScVbaHyperlinks::Add(
const uno::Any& rAnchor, const uno::Any& rAddress, const uno::Any& rSubAddress,
const uno::Any& rScreenTip, const uno::Any& rTextToDisplay ) throw (uno::RuntimeException, std::exception)
{
- /* If this Hyperlinks object has been craeted from a Range object, the
+ /* If this Hyperlinks object has been created from a Range object, the
call to Add() is passed to the Hyperlinks object of the parent
worksheet. This container will not be modified (it will not contain the
inserted hyperlink).
diff --git a/scp2/inc/macros.inc b/scp2/inc/macros.inc
index 86b221e..7b895b6 100644
--- a/scp2/inc/macros.inc
+++ b/scp2/inc/macros.inc
@@ -163,7 +163,7 @@ End
End
#ifdef MACOSX
-// links are craeted at configure time by odk/config/setsdkenv_unix.sh.in
+// links are created at configure time by odk/config/setsdkenv_unix.sh.in
#define SDK_LIBRARY_LINK(id,name,target)
#elif defined(WNT)
#define SDK_LIBRARY_LINK(id,name,target) \
diff --git a/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx b/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx
index 9707c64..120b38c 100644
--- a/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx
+++ b/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx
@@ -56,7 +56,7 @@ public:
separately.
@param nIndex
This index is displayed in the view as page number. It is not
- necessaryily the page index (not even when you add or subtract 1
+ necessarily the page index (not even when you add or subtract 1
or use (x-1)/2 magic).
*/
PageDescriptor (
diff --git a/svtools/source/svhtml/htmlkywd.cxx b/svtools/source/svhtml/htmlkywd.cxx
index 166fb5c..6034082 100644
--- a/svtools/source/svhtml/htmlkywd.cxx
+++ b/svtools/source/svhtml/htmlkywd.cxx
@@ -85,7 +85,7 @@ static HTML_TokenEntry aHTMLTokenTab[] = {
{{OOO_STRING_SVTOOLS_HTML_dt}, HTML_DT_ON},
{{OOO_STRING_SVTOOLS_HTML_emphasis}, HTML_EMPHASIS_ON},
{{OOO_STRING_SVTOOLS_HTML_figure}, HTML_FIGURE_ON}, // HTML 3.0
- {{OOO_STRING_SVTOOLS_HTML_font}, HTML_FONT_ON}, // Netscpe
+ {{OOO_STRING_SVTOOLS_HTML_font}, HTML_FONT_ON}, // Netscape
{{OOO_STRING_SVTOOLS_HTML_footnote}, HTML_FOOTNOTE_ON}, // HTML 3.0
{{OOO_STRING_SVTOOLS_HTML_form}, HTML_FORM_ON},
{{OOO_STRING_SVTOOLS_HTML_frame}, HTML_FRAME_ON}, // Netscape 2.0
diff --git a/xmloff/source/chart/SchXMLChartContext.cxx b/xmloff/source/chart/SchXMLChartContext.cxx
index 3a05c5c..f77ee8d 100644
--- a/xmloff/source/chart/SchXMLChartContext.cxx
+++ b/xmloff/source/chart/SchXMLChartContext.cxx
@@ -248,7 +248,7 @@ void SchXMLChartContext::StartElement( const uno::Reference< xml::sax::XAttribut
if( xVisualObject.is() )
maChartSize = xVisualObject->getVisualAreaSize( embed::Aspects::MSOLE_CONTENT ); //#i103460# take the size given from the parent frame as default
- // this flag is necessarry for pie charts in the core
+ // this flag is necessary for pie charts in the core
bool bSetSwitchData = false;
OUString sAutoStyleName;
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index a45784f..8338b75 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -633,7 +633,7 @@ uno::Sequence< OUString > lcl_DataSequenceToStringSequence(
}
if(!bHasValue)
{
- //no double value is countained
+ //no double value is contained
//is there any text?
uno::Sequence< OUString > aStrings( lcl_DataSequenceToStringSequence( xSeq ) );
sal_Int32 nTextCount = aStrings.getLength();
diff --git a/xmloff/source/draw/ximpbody.cxx b/xmloff/source/draw/ximpbody.cxx
index 418ba89..c9fee0c 100644
--- a/xmloff/source/draw/ximpbody.cxx
+++ b/xmloff/source/draw/ximpbody.cxx
@@ -144,7 +144,7 @@ SdXMLDrawPageContext::SdXMLDrawPageContext( SdXMLImport& rImport,
{
// #85906# Code for setting masterpage needs complete rework
// since GetSdImport().GetMasterStylesContext() gives always ZERO
- // because of content/style file split. Now the nechanism is to
+ // because of content/style file split. Now the mechanism is to
// compare the wanted masterpage-name with the existing masterpages
// which were loaded and created in the styles section loading.
uno::Reference< drawing::XDrawPages > xMasterPages(GetSdImport().GetLocalMasterPages(), uno::UNO_QUERY);
More information about the Libreoffice-commits
mailing list