spelling: instanciated -> instantiated
Change-Id: I99f3010e30f81786b938dc11736ea1597cd5530d
This commit is contained in:
parent
35da89fa14
commit
fbf3aa391b
@ -177,7 +177,7 @@ class SbiProcDef : public SbiSymDef { // procedure definition (from basic):
|
||||
OUString maPropName; // Property name if property procedure (!= proc name)
|
||||
bool bCdecl : 1; // true: CDECL given
|
||||
bool bPublic : 1; // true: proc is PUBLIC
|
||||
bool mbProcDecl : 1; // true: instanciated by SbiParser::ProcDecl
|
||||
bool mbProcDecl : 1; // true: instantiated by SbiParser::ProcDecl
|
||||
public:
|
||||
SbiProcDef( SbiParser*, const OUString&, bool bProcDecl=false );
|
||||
virtual ~SbiProcDef();
|
||||
|
@ -56,7 +56,7 @@ VCoordinateSystem* VCoordinateSystem::createCoordinateSystem(
|
||||
|
||||
OUString aViewServiceName = xCooSysModel->getViewServiceName();
|
||||
|
||||
//@todo: in future the coordinatesystems should be instanciated via service factory
|
||||
//@todo: in future the coordinatesystems should be instantiated via service factory
|
||||
VCoordinateSystem* pRet=NULL;
|
||||
if( aViewServiceName.equals( CHART2_COOSYSTEM_CARTESIAN_VIEW_SERVICE_NAME ) )
|
||||
pRet = new VCartesianCoordinateSystem(xCooSysModel);
|
||||
|
@ -44,7 +44,7 @@
|
||||
#include "DiagramHelper.hxx"
|
||||
#include "defines.hxx"
|
||||
|
||||
//only for creation: @todo remove if all plotter are uno components and instanciated via servicefactory
|
||||
//only for creation: @todo remove if all plotter are uno components and instantiated via servicefactory
|
||||
#include "BarChart.hxx"
|
||||
#include "PieChart.hxx"
|
||||
#include "AreaChart.hxx"
|
||||
|
@ -44,7 +44,7 @@ class CWinClipbImpl;
|
||||
// and a static member to reasocciate from this static function to the
|
||||
// class instance
|
||||
// watch out: we are using only one static member variable and not a list
|
||||
// because we assume to be instanciated only once
|
||||
// because we assume to be instantiated only once
|
||||
// this will be asured by an OneInstanceFactory of the service and not
|
||||
// by this class!
|
||||
|
||||
|
@ -451,7 +451,7 @@ private:
|
||||
/** @short tries to use FrameLoader objects for loading.
|
||||
|
||||
@descr First the target frame will be located. If it could be found
|
||||
or new created a filter/frame loader will be instanciated and
|
||||
or new created a filter/frame loader will be instantiated and
|
||||
used to load the content into this frame.
|
||||
In case loading failed all new created resources will be
|
||||
removed before a suitable exception is thrown.
|
||||
|
@ -376,7 +376,7 @@ void JobDispatch::impl_dispatchEvent( /*IN*/ const OUString&
|
||||
of e.g. one instance services.
|
||||
|
||||
@param sService
|
||||
the uno implementation or service name of the job, which should be instanciated
|
||||
the uno implementation or service name of the job, which should be instantiated
|
||||
|
||||
@param lArgs
|
||||
optional arguments for this request
|
||||
|
@ -217,7 +217,7 @@ public:
|
||||
|
||||
protected:
|
||||
/** This dummy default c'tor will never call the c'tor of the virtual base
|
||||
class BinaryStreamBase as this class cannot be instanciated directly. */
|
||||
class BinaryStreamBase as this class cannot be instantiated directly. */
|
||||
BinaryInputStream() : BinaryStreamBase( false ) {}
|
||||
};
|
||||
|
||||
|
@ -76,7 +76,7 @@ public:
|
||||
|
||||
protected:
|
||||
/** This dummy default c'tor will never call the c'tor of the virtual base
|
||||
class BinaryStreamBase as this class cannot be instanciated directly. */
|
||||
class BinaryStreamBase as this class cannot be instantiated directly. */
|
||||
BinaryOutputStream() : BinaryStreamBase( false ) {}
|
||||
};
|
||||
|
||||
|
@ -31,7 +31,7 @@ namespace salhelper{
|
||||
|
||||
/** @short template for implementing singleton classes.
|
||||
|
||||
Such classes can be instanciated every time they
|
||||
Such classes can be instantiated every time they
|
||||
are needed. But the internal wrapped object will
|
||||
be created one times only. Of course its used
|
||||
resources are referenced one times only too.
|
||||
|
@ -138,7 +138,7 @@ public:
|
||||
is something like org.libreoffice.calc, this modifies the names to
|
||||
"LibreOffice"+pName and "org.libreoffice.calc"+pName to make tests not
|
||||
interfere with the real world. This is not to be used otherwise. If
|
||||
used it must be called before the first TeleManager is instanciated and
|
||||
used it must be called before the first TeleManager is instantiated and
|
||||
connects.
|
||||
*/
|
||||
// exported for unit test
|
||||
|
@ -215,7 +215,7 @@ void XclExpRoot::InitializeGlobals()
|
||||
ScDocument& rDoc = GetDoc();
|
||||
// Pass the model factory to OpCodeProvider, not the process
|
||||
// service factory, otherwise a FormulaOpCodeMapperObj would be
|
||||
// instanciated intead of a ScFormulaOpCodeMapperObj and the
|
||||
// instantiated intead of a ScFormulaOpCodeMapperObj and the
|
||||
// ScCompiler virtuals not be called! Which would be the case with
|
||||
// the current (2013-01-24) rDoc.GetServiceManager()
|
||||
const SfxObjectShell* pShell = rDoc.GetDocumentShell();
|
||||
|
@ -3661,7 +3661,7 @@ bool SvNumberFormatter::IsLocaleInstalled( LanguageType eLang )
|
||||
{
|
||||
// The set is initialized as a side effect of the currency table
|
||||
// created, make sure that exists, which usually is the case unless a
|
||||
// SvNumberFormatter was never instanciated.
|
||||
// SvNumberFormatter was never instantiated.
|
||||
GetTheCurrencyTable();
|
||||
const NfInstalledLocales &rInstalledLocales = theInstalledLocales::get();
|
||||
return rInstalledLocales.find( eLang) != rInstalledLocales.end();
|
||||
|
@ -42,7 +42,7 @@ public class MessageArea
|
||||
|
||||
|
||||
/** Create a new message area. This method is private because the class is
|
||||
a singleton and may therefore not be instanciated from the outside.
|
||||
a singleton and may therefore not be instantiated from the outside.
|
||||
*/
|
||||
private MessageArea ()
|
||||
{
|
||||
|
@ -317,7 +317,7 @@ PropertySetRegistry::openPropertySet( const OUString& key, sal_Bool create )
|
||||
PropertySetMap_Impl::const_iterator it = rSets.find( key );
|
||||
if ( it != rSets.end() )
|
||||
{
|
||||
// Already instanciated.
|
||||
// Already instantiated.
|
||||
return Reference< XPersistentPropertySet >( (*it).second );
|
||||
}
|
||||
else
|
||||
|
@ -539,7 +539,7 @@ getReadOnlyException( const uno::Reference< uno::XInterface >& rContext )
|
||||
|
||||
void Content::queryChildren( ContentRefList& rChildren )
|
||||
{
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
@ -596,7 +596,7 @@ bool Content::exchangeIdentity( const uno::Reference< ucb::XContentIdentifier >&
|
||||
// Exchange own identitity.
|
||||
if ( exchange( xNewId ) )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
||||
|
@ -871,7 +871,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
|
||||
|
||||
void Content::queryChildren( ContentRefList& rChildren )
|
||||
{
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
@ -1031,7 +1031,7 @@ void Content::destroy( sal_Bool bDeletePhysical )
|
||||
|
||||
osl::Guard< osl::Mutex > aGuard( m_aMutex );
|
||||
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
::gvfs::Content::ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
||||
@ -1072,7 +1072,7 @@ sal_Bool Content::exchangeIdentity(
|
||||
// Exchange own identitity.
|
||||
if ( exchange( xNewId ) ) {
|
||||
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
||||
|
@ -785,7 +785,7 @@ void HierarchyContent::queryChildren( HierarchyContentRefList& rChildren )
|
||||
if ( ( m_eKind != FOLDER ) && ( m_eKind != ROOT ) )
|
||||
return;
|
||||
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
@ -870,7 +870,7 @@ bool HierarchyContent::exchangeIdentity(
|
||||
{
|
||||
if ( m_eKind == FOLDER )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
HierarchyContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
@ -1564,7 +1564,7 @@ void HierarchyContent::destroy( bool bDeletePhysical,
|
||||
|
||||
if ( m_eKind == FOLDER )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
HierarchyContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
@ -1785,7 +1785,7 @@ void Content::destroy(
|
||||
|
||||
if ( isFolder() )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
@ -2123,7 +2123,7 @@ bool Content::exchangeIdentity(
|
||||
m_aUri = aNewUri;
|
||||
if ( isFolder() )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
@ -2165,7 +2165,7 @@ bool Content::exchangeIdentity(
|
||||
|
||||
void Content::queryChildren( ContentRefList& rChildren )
|
||||
{
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
|
@ -237,7 +237,7 @@ ContentProvider::createPackage( const PackageUri & rURI )
|
||||
Packages::const_iterator it = m_pPackages->find( rURL );
|
||||
if ( it != m_pPackages->end() )
|
||||
{
|
||||
// Already instanciated. Return package.
|
||||
// Already instantiated. Return package.
|
||||
return (*it).second->m_xNA;
|
||||
}
|
||||
}
|
||||
|
@ -770,7 +770,7 @@ void Content::queryChildren( ContentRefList& rChildren )
|
||||
if ( !m_aProps.getIsFolder() )
|
||||
return;
|
||||
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
@ -856,7 +856,7 @@ bool Content::exchangeIdentity(
|
||||
{
|
||||
if ( eType == FOLDER )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
@ -1789,7 +1789,7 @@ void Content::destroy( bool bDeletePhysical,
|
||||
|
||||
if ( eType == FOLDER )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
@ -287,7 +287,7 @@ void ContentProvider::notifyDocumentClosed( const OUString & rDocId )
|
||||
if ( xRoot.is() )
|
||||
{
|
||||
// No document content found for rDocId but root content
|
||||
// instanciated. Root content must announce document removal
|
||||
// instantiated. Root content must announce document removal
|
||||
// to content event listeners.
|
||||
xRoot->notifyChildRemoved( rDocId );
|
||||
}
|
||||
@ -305,7 +305,7 @@ void ContentProvider::notifyDocumentOpened( const OUString & rDocId )
|
||||
::ucbhelper::ContentRefList::const_iterator it = aAllContents.begin();
|
||||
::ucbhelper::ContentRefList::const_iterator end = aAllContents.end();
|
||||
|
||||
// Find root content. If instanciated let it propagate document insertion.
|
||||
// Find root content. If instantiated let it propagate document insertion.
|
||||
|
||||
while ( it != end )
|
||||
{
|
||||
|
@ -2193,7 +2193,7 @@ void Content::post(
|
||||
|
||||
void Content::queryChildren( ContentRefList& rChildren )
|
||||
{
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
@ -2728,7 +2728,7 @@ void Content::destroy( bool bDeletePhysical )
|
||||
|
||||
osl::Guard< osl::Mutex > aGuard( m_aMutex );
|
||||
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
::webdav_ucp::Content::ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
@ -2866,7 +2866,7 @@ bool Content::exchangeIdentity(
|
||||
aGuard.clear();
|
||||
if ( exchange( xNewId ) )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
@ -2340,7 +2340,7 @@ void Content::post(
|
||||
|
||||
void Content::queryChildren( ContentRefList& rChildren )
|
||||
{
|
||||
// Obtain a list with a snapshot of all currently instanciated contents
|
||||
// Obtain a list with a snapshot of all currently instantiated contents
|
||||
// from provider and extract the contents which are direct children
|
||||
// of this content.
|
||||
|
||||
@ -2881,7 +2881,7 @@ void Content::destroy( bool bDeletePhysical )
|
||||
|
||||
osl::Guard< osl::Mutex > aGuard( m_aMutex );
|
||||
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
::http_dav_ucp::Content::ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
@ -3018,7 +3018,7 @@ bool Content::exchangeIdentity(
|
||||
aGuard.clear();
|
||||
if ( exchange( xNewId ) )
|
||||
{
|
||||
// Process instanciated children...
|
||||
// Process instantiated children...
|
||||
|
||||
ContentRefList aChildren;
|
||||
queryChildren( aChildren );
|
||||
|
@ -806,7 +806,7 @@ void ContentImplHelper::inserted()
|
||||
// Content is not yet registered at provider.
|
||||
m_xProvider->registerNewContent( this );
|
||||
|
||||
// If the parent content is currently not instanciated, there can be
|
||||
// If the parent content is currently not instantiated, there can be
|
||||
// no listeners interested in changes ;-)
|
||||
|
||||
rtl::Reference< ContentImplHelper > xParent
|
||||
|
@ -35,7 +35,7 @@
|
||||
@image html doctok.png
|
||||
|
||||
A resource is a set of events that describe an object. A resource
|
||||
is only an abstract concept. It is not instanciated to a class.
|
||||
is only an abstract concept. It is not instantiated to a class.
|
||||
|
||||
A reference to a resource represents the object that the resource
|
||||
describes. The reference can be resolved thereby generating the
|
||||
|
@ -80,7 +80,7 @@ SchXMLDocContext::SchXMLDocContext( SchXMLImportHelper& rImpHelper,
|
||||
( !IsXMLToken( rLName, XML_DOCUMENT ) &&
|
||||
!IsXMLToken( rLName, XML_DOCUMENT_META) &&
|
||||
!IsXMLToken( rLName, XML_DOCUMENT_STYLES) &&
|
||||
!IsXMLToken( rLName, XML_DOCUMENT_CONTENT) ), "xmloff.chart", "SchXMLDocContext instanciated with no <office:document> element" );
|
||||
!IsXMLToken( rLName, XML_DOCUMENT_CONTENT) ), "xmloff.chart", "SchXMLDocContext instantiated with no <office:document> element" );
|
||||
}
|
||||
|
||||
SchXMLDocContext::~SchXMLDocContext()
|
||||
@ -168,7 +168,7 @@ SchXMLBodyContext::SchXMLBodyContext( SchXMLImportHelper& rImpHelper,
|
||||
mrImportHelper( rImpHelper )
|
||||
{
|
||||
SAL_WARN_IF( (XML_NAMESPACE_OFFICE != nPrefix) ||
|
||||
!IsXMLToken( rLName, XML_CHART ), "xmloff.chart", "SchXMLBodyContext instanciated with no <office:chart> element" );
|
||||
!IsXMLToken( rLName, XML_CHART ), "xmloff.chart", "SchXMLBodyContext instantiated with no <office:chart> element" );
|
||||
}
|
||||
|
||||
SchXMLBodyContext::~SchXMLBodyContext()
|
||||
|
Loading…
x
Reference in New Issue
Block a user