Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo: exsists/exsisting #19

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chart2/source/controller/main/SelectionHelper.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ SdrObject* SelectionHelper::getMarkHandlesObject( SdrObject* pObj )
SdrObject* SelectionHelper::getObjectToMark()
{
//return the selected object itself
//or a specific other object if that exsists
//or a specific other object if that exists
SdrObject* pObj = m_pSelectedObj;
m_pMarkObj = pObj;

Expand Down Expand Up @@ -571,7 +571,7 @@ bool SelectionHelper::getMarkHandles( SdrHdlList& rHdlList )
//.. or 3. feature from drawinglayer to create handles for each shape ... (bad performance ... ?) ?

//scenario 1 is now used:
//if a child with name MarkHandles exsists
//if a child with name MarkHandles exists
//this child is marked instead of the logical selected object

/*
Expand Down
2 changes: 1 addition & 1 deletion chart2/source/model/template/ChartTypeTemplate.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ void ChartTypeTemplate::createAxes(
void ChartTypeTemplate::adaptAxes(
const Sequence< Reference< XCoordinateSystem > > & rCoordSys )
{
//adapt properties of exsisting axes and remove superfluous axes
//adapt properties of existing axes and remove superfluous axes

if( rCoordSys.getLength() > 0 )
{
Expand Down
2 changes: 1 addition & 1 deletion chart2/source/model/template/ChartTypeTemplate.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ protected:
*/
virtual sal_Int32 getAxisCountByDimension( sal_Int32 nDimension );

/** adapt properties of exsisting axes and remove superfluous axes
/** adapt properties of existing axes and remove superfluous axes
*/
virtual void adaptAxes(
const css::uno::Sequence< css::uno::Reference< css::chart2::XCoordinateSystem > > & rCoordSys );
Expand Down
2 changes: 1 addition & 1 deletion include/drawinglayer/primitive2d/cropprimitive2d.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace drawinglayer
to get to the uncropped original content.

Thus a transformation has to be calculated which will be applied
to the already exsisting content to get it to the uncropped state
to the already existing content to get it to the uncropped state
and then this is masked with the current state (mask polygon
created from unit polygon and maTransformation).

Expand Down
2 changes: 1 addition & 1 deletion qadevOOo/tests/java/ifc/frame/_XController.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* <li> <code>'SecondModel'</code> (of type <code>XModel</code>):
* other model, used for tests </li>
* <li> <code>'HasViewData'</code> (of type <code>Boolean</code>):
* (optional relation) if it exsists, so controller has no view data</li>
* (optional relation) if it exists, so controller has no view data</li>
* <li> <code>'SecondController'</code> (of type <code>XController</code>):
* other controller, used for tests </li>
* </ul> <p>
Expand Down
2 changes: 1 addition & 1 deletion qadevOOo/tests/java/ifc/frame/_XFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
* to find other frame than itself.</li>
*
* <li> <code>'Desktop'</code> (of type <code>Object</code>):
* if exsists, then desktop component is tested</li>
* if exists, then desktop component is tested</li>
* </ul> <p>
* Test is <b> NOT </b> multithread compliant. <p>
* @see com.sun.star.frame.XFrame
Expand Down
10 changes: 5 additions & 5 deletions sax/source/expatwrap/xml2utf.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void XMLFile2UTFConverter::removeEncoding( Sequence<sal_Int8> &seq )
bool XMLFile2UTFConverter::isEncodingRecognizable( const Sequence< sal_Int8 > &seq)
{
const sal_Int8 *pSource = seq.getConstArray();
bool bCheckIfFirstClosingBracketExsists = false;
bool bCheckIfFirstClosingBracketExists = false;

if( seq.getLength() < 8 ) {
// no recognition possible, when less than 8 bytes are available
Expand All @@ -171,22 +171,22 @@ bool XMLFile2UTFConverter::isEncodingRecognizable( const Sequence< sal_Int8 > &s

if( ! strncmp( reinterpret_cast<const char *>(pSource), "<?xml", 5 ) ) {
// scan if the <?xml tag finishes within this buffer
bCheckIfFirstClosingBracketExsists = true;
bCheckIfFirstClosingBracketExists = true;
}
else if( ('<' == pSource[0] || '<' == pSource[2] ) &&
('?' == pSource[4] || '?' == pSource[6] ) )
{
// check for utf-16
bCheckIfFirstClosingBracketExsists = true;
bCheckIfFirstClosingBracketExists = true;
}
else if( ( '<' == pSource[1] || '<' == pSource[3] ) &&
( '?' == pSource[5] || '?' == pSource[7] ) )
{
// check for
bCheckIfFirstClosingBracketExsists = true;
bCheckIfFirstClosingBracketExists = true;
}

if( bCheckIfFirstClosingBracketExsists )
if( bCheckIfFirstClosingBracketExists )
{
for( sal_Int32 i = 0; i < seq.getLength() ; i ++ )
{
Expand Down
2 changes: 1 addition & 1 deletion sfx2/source/doc/docfile.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2944,7 +2944,7 @@ void SfxMedium::CloseAndReleaseStreams_Impl()
pImpl->m_xLockingStream.clear();
}

// The probably exsisting SvStream wrappers should be closed first
// The probably existing SvStream wrappers should be closed first
CloseStreams_Impl();

// in case of salvage mode the storage is based on the streams
Expand Down
2 changes: 1 addition & 1 deletion svx/source/sdr/contact/viewcontact.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ ViewContact* ViewContact::GetParentContact() const

void ViewContact::ActionChildInserted(ViewContact& rChild)
{
// propagate change to all exsisting visualisations which
// propagate change to all existing visualisations which
// will force a VOC for the new child and invalidate its range
const sal_uInt32 nCount(maViewObjectContactVector.size());

Expand Down