Kaydet (Commit) 9bac4d41 authored tarafından Takeshi Abe's avatar Takeshi Abe

typo: more then -> more than

Change-Id: I2e477d66f25bde7256938ccb1f95ab26add24922
üst ca1897ed
......@@ -144,7 +144,7 @@ void SAL_CALL OConnectionPointHelper::advise( const Reference< XInterface >& xLi
// ListenerExistException is obsolete!?
// Its the same container for XConnectionPointContainer and XConnectionPoint. But only here we must control, if a listener already exist!?
// You can add a listener more then one time at XConnectionPointContainer, but here only one ...
// You can add a listener more than one time at XConnectionPointContainer, but here only one ...
// Operation is permitted only, if reference to container is valid!
if ( !impl_LockContainer() )
......
......@@ -90,7 +90,7 @@ static void CheckParentsOnDelete( SbxObject* pObj, SbxArray* p )
{
pObj->EndListening( rRef->GetBroadcaster(), true );
}
// does the element have more then one reference and still a Listener?
// does the element have more than one reference and still a Listener?
if( rRef->GetRefCount() > 1 )
{
rRef->SetParent( NULL );
......
......@@ -465,12 +465,12 @@ public class LocalOfficeConnection
if (path == null)
path = buffer.toString();
else
state = -3; // error: more then one 'path'
state = -3; // error: more than one 'path'
} else if (("pipe").equals(name)) {
if (pipe == null)
pipe = buffer.toString();
else
state = -4; // error: more then one 'pipe'
state = -4; // error: more than one 'pipe'
} else
state = -2; // error: unknown parameter
buffer.delete(0, buffer.length());
......
......@@ -572,12 +572,12 @@ public class LocalOfficeConnection
if (path == null)
path = buffer.toString();
else
state = -3; // error: more then one 'path'
state = -3; // error: more than one 'path'
} else if (name.equals("pipe")) {
if (pipe == null)
pipe = buffer.toString();
else
state = -4; // error: more then one 'pipe'
state = -4; // error: more than one 'pipe'
} else
state = -2; // error: unknown parameter
buffer.delete(0, buffer.length());
......
......@@ -263,8 +263,8 @@ struct CliProxy: public uno_Interface
first call. In all ensuing calls the MethodInfo object is immediately
retrieved through the mapping table.
If the interface has more then one interface in its inheritance chain,
that is Type.GetInterfaces return more then one Type, then the mapping
If the interface has more than one interface in its inheritance chain,
that is Type.GetInterfaces return more than one Type, then the mapping
table is partially initiallized. On the first call the mappings for the
methods of the belonging interface are created.
......
......@@ -99,7 +99,7 @@ public class WeakComponentBase : WeakBase, XComponent
{
// Determine in a thread-safe way if this is the first call to this
// method. Only then we proceed with the notification of event
// listeners. It is an error to call this method more then once.
// listeners. It is an error to call this method more than once.
bool doDispose = false;
t_disposing call = null;
lock (this)
......
......@@ -4,5 +4,5 @@ It was moved out from svx in DEV300m68:
http://www.mail-archive.com/dev@openoffice.org/msg12925.html
It contains dialogs used by more then one application, e.g. paragraph
It contains dialogs used by more than one application, e.g. paragraph
properties.
......@@ -341,7 +341,7 @@ HRESULT DropTarget::DragEnter( IDataObject *pDataObj,
// by the listener (m_nCurrentDropAction) is allowed by the source. Only a allowed action is set
// in pdwEffect. The listener notification is asynchron, that is we cannot expext that the listener
// has already reacted to the notification.
// If there is more then one valid action which is the case when ALT or RIGHT MOUSE BUTTON is pressed
// If there is more than one valid action which is the case when ALT or RIGHT MOUSE BUTTON is pressed
// then getDropEffect returns DROPEFFECT_MOVE which is the default value if no other modifier is pressed.
// On drop the target should present the user a dialog from which the user may change the action.
sal_Int8 allowedActions= dndOleDropEffectsToActions( *pdwEffect);
......@@ -389,7 +389,7 @@ HRESULT DropTarget::DragOver( DWORD grfKeyState,
// by the listener (m_nCurrentDropAction) is allowed by the source. Only a allowed action is set
// in pdwEffect. The listener notification is asynchron, that is we cannot expext that the listener
// has already reacted to the notification.
// If there is more then one valid action which is the case when ALT or RIGHT MOUSE BUTTON is pressed
// If there is more than one valid action which is the case when ALT or RIGHT MOUSE BUTTON is pressed
// then getDropEffect returns DROPEFFECT_MOVE which is the default value if no other modifier is pressed.
// On drop the target should present the user a dialog from which the user may change the action.
sal_Int8 allowedActions= dndOleDropEffectsToActions( *pdwEffect);
......
......@@ -63,7 +63,7 @@ public class NativeView extends java.awt.Canvas
* Why here?
* Because the handle seems to be available for already visible windows
* only. So it's the best place to get it. Special helper method
* can be called more then ones - but call native code one times only
* can be called more than ones - but call native code one times only
* and safe the handle and the system type on our members maHandle/maSystem!
*/
public void setVisible( boolean bState )
......
-o pcr.ObjectInspector
# this object must be tested twice, because it is the only one in this module
# The runner only prints "[0-9]+? of [0-9]+? tests failed"
# if more then one tests is executed. This is needed by cwscheckapi.
# if more than one tests is executed. This is needed by cwscheckapi.
-o pcr.ObjectInspector
......@@ -1646,7 +1646,7 @@ void UnoConversionUtilities<T>::variantToAny( const VARIANT* pVariant, Any& rAny
// IUnknownWrapper_Impl. Additionally an object of type "aType" is created by help
// of the INTERFACE_ADAPTER_FACTORY (see #define) service. The implementation of
// "aType" calls on the COM wrapper's XInvocation::invoke. If the COM object supports
// more then one UNO interfaces, as can be determined by the property
// more than one UNO interfaces, as can be determined by the property
// SUPPORTED_INTERFACES_PROP, then the INTERFACE_ADAPTER_FACTORY creates an object that
// implements all these interfaces.
// This is only done if "pUnknown" is not already a UNO wrapper,
......
......@@ -54,7 +54,7 @@ QueryTokenizer::QueryTokenizer(const OUString& sQuery)
if (find(sKey) != end())
m_bValid = false;
OSL_ENSURE(m_bValid, "QueryTokenizer::QueryTokenizer()\nQuery contains same param more then once. Last one wins :-)\n");
OSL_ENSURE(m_bValid, "QueryTokenizer::QueryTokenizer()\nQuery contains same param more than once. Last one wins :-)\n");
(*this)[sKey] = sVal;
}
......
......@@ -199,7 +199,7 @@ private:
The whole detection must be interrupted then and the interface method queryTypeByDescriptor()
must return an empty type name value.
That prevent us against multiple handling of the same error more then ones
That prevent us against multiple handling of the same error more than ones
(e.g. if we ask all detect services as fallback ...).
</li>
<li>
......
......@@ -56,7 +56,7 @@ extension_pkg=pkg
# These values are used to generate a correct XML
# header.
# Note: The property "xmlpackage" must be specified
# via command line. There exists more then one
# via command line. There exists more than one
# possible value.
#
# [REQUIRED]
......
......@@ -158,7 +158,7 @@ bool RASReader::ReadRAS(Graphic & rGraphic)
}
else
{
if ( mnColorMapType != RAS_COLOR_NO_MAP ) // when graphic has more then 256 colors and a color map we skip
if ( mnColorMapType != RAS_COLOR_NO_MAP ) // when graphic has more than 256 colors and a color map we skip
{ // the colormap
sal_uLong nCurPos = m_rRAS.Tell();
m_rRAS.Seek( nCurPos + mnColorMapSize );
......
......@@ -172,7 +172,7 @@ void SAL_CALL CFilePicker::dialogSizeChanged()
}
// If there are more then one listener the return value of the last one wins
// If there are more than one listener the return value of the last one wins
OUString SAL_CALL CFilePicker::helpRequested(FilePickerEvent aEvent) const
......
......@@ -437,7 +437,7 @@ class DataContainer
but must be executed on different places inside this configuration structures.
These enum values can be used ate some interface methods to specify, which
configuration set should be used.
Further it must be possible to start the same action for more then one cfg type.
Further it must be possible to start the same action for more than one cfg type.
That's why these values must be interpreted as flags. Means: its values must be
in range [2^n]!
*/
......
......@@ -104,7 +104,7 @@ class FWI_DLLPUBLIC PropertySetHelper : public css::beans::XPropertySet
* if a property with the same name already exists.
*
* Note: The consistence of the whole set of properties is not checked here.
* Means e.g. ... a handle which exists more then once is not detected.
* Means e.g. ... a handle which exists more than once is not detected.
* The owner of this class has to be sure, that every new property does
* not clash with any existing one.
*/
......
......@@ -207,7 +207,7 @@ class InterceptionHelper : public ::cppu::WeakImplHelper3<
/** @short implements an optimized queryDispatch() for remote.
@descr It capsulate more then one queryDispatch() requests and return a lits of dispatch objects
@descr It capsulate more than one queryDispatch() requests and return a lits of dispatch objects
as result. Because both lists (in and out) coreespond together, it's not allowed to
pack it - means suppress NULL references!
......
......@@ -42,7 +42,7 @@ class DockingAreaDefaultAcceptor : public ::cppu::WeakImplHelper1< ::com::s
/*-****************************************************************************************************
@short constructor to initialize this instance
@descr A docking area acceptor
But we need a instance to create more then one enumerations to the same tasklist!
But we need a instance to create more than one enumerations to the same tasklist!
@seealso class Desktop
@seealso class OTasksEnumeration
......
......@@ -67,7 +67,7 @@ class OComponentAccess : public ::cppu::WeakImplHelper1< ::com::sun::star::co
@short constructor to initialize this instance
@descr A desktop will create an enumeration-access-object. An enumeration is a oneway-list and a
snapshot of the components of current tasks under the desktop.
But we need a instance to create more then one enumerations at different times!
But we need a instance to create more than one enumerations at different times!
@seealso class Desktop
@seealso class OComponentEnumeration
......@@ -107,7 +107,7 @@ class OComponentAccess : public ::cppu::WeakImplHelper1< ::com::sun::star::co
/*-****************************************************************************************************
@short get state of componentlist of enumeration.
@seealso interface XElementAccess
@return sal_True ,if more then 0 elements exist.
@return sal_True ,if more than 0 elements exist.
@return sal_False ,otherwise.
*//*-*****************************************************************************************************/
......
......@@ -95,7 +95,7 @@ ________________________________________________________________________________
}
// private
// implementation of XInterface::queryInterface() with more then 12 other interfaces!
// implementation of XInterface::queryInterface() with more than 12 other interfaces!
#define PRIVATE_DEFINE_XINTERFACE_QUERYINTERFACE_LARGE( CLASS, BASECLASS, INTERFACES_FIRST, INTERFACES_SECOND ) \
::com::sun::star::uno::Any SAL_CALL CLASS::queryInterface( const ::com::sun::star::uno::Type& aType ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) \
......
......@@ -88,7 +88,7 @@ ________________________________________________________________________________
}
// private
// implementation of XTypeProvider::getTypes() with more then 12 interfaces!
// implementation of XTypeProvider::getTypes() with more than 12 interfaces!
#define PRIVATE_DEFINE_XTYPEPROVIDER_GETTYPES_LARGE( CLASS, TYPES_FIRST, TYPES_SECOND ) \
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL CLASS::getTypes() throw( ::com::sun::star::uno::RuntimeException, std::exception ) \
......
......@@ -48,7 +48,7 @@ import static org.junit.Assert.*;
/** @short Check the interface XDispatchInformationProvider
@descr Because there exists more then one implementation of a dispatch
@descr Because there exists more than one implementation of a dispatch
object, we have to test all these implementations ...
*/
public class checkdispatchapi
......
......@@ -160,7 +160,7 @@ css::uno::Reference< css::embed::XStorage > StorageHolder::openPath(const OUStri
}
// TODO think about return last storage as working storage ... but dont caching it inside this holder!
// => otherwise the same storage is may be commit more then once.
// => otherwise the same storage is may be commit more than once.
return xChild;
}
......
......@@ -170,7 +170,7 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryDeskt
(sTargetFrameName==SPECIALTARGET_MENUBAR ) || // valid for frame dispatches - not for desktop
(sTargetFrameName==SPECIALTARGET_PARENT ) || // we have no parent by definition
(sTargetFrameName==SPECIALTARGET_BEAMER ) // beamer frames are allowed as child of tasks only -
// and they exist more then ones. We have no idea which our sub tasks is the right one
// and they exist more than ones. We have no idea which our sub tasks is the right one
)
{
return NULL;
......
......@@ -104,7 +104,7 @@ void TransactionManager::setWorkingMode( EWorkingMode eMode )
/*-****************************************************************************************************
@short get current working mode
@descr If you stand in your close() or init() method ... but don't know
if you called more then ones(!) ... you can use this function to get
if you called more than ones(!) ... you can use this function to get
right information.
e.g: You have a method init() which is used to change working mode from
E_INIT to E_WORK and should be used to initialize some member too ...
......
......@@ -101,7 +101,7 @@ Any SAL_CALL OComponentEnumeration::nextElement() throw( NoSuchElementExcepti
void OComponentEnumeration::impl_resetObject()
{
// Attention:
// Write this for multiple calls - NOT AT THE SAME TIME - but for more then one call again)!
// Write this for multiple calls - NOT AT THE SAME TIME - but for more than one call again)!
// It exist two ways to call this method. From destructor and from disposing().
// I can't say, which one is the first. Normaly the disposing-call - but other way ....
......
......@@ -286,7 +286,7 @@ sal_Bool SAL_CALL OFrames::hasElements() throw( RuntimeException, std::exception
void OFrames::impl_resetObject()
{
// Attention:
// Write this for multiple calls - NOT AT THE SAME TIME - but for more then one call again)!
// Write this for multiple calls - NOT AT THE SAME TIME - but for more than one call again)!
// It exist two ways to call this method. From destructor and from disposing().
// I can't say, which one is the first. Normaly the disposing-call - but other way ....
......
......@@ -53,7 +53,7 @@ class ActionLockGuard
@descr That can be useful in cases, where no resource still exists,
but will be available next time. Then this guard can be used
in a mode "use guard for more then one resources".
in a mode "use guard for more than one resources".
*/
ActionLockGuard()
: m_bActionLocked(false)
......
......@@ -524,7 +524,7 @@ private:
css::uno::Reference< css::frame::XFrame > impl_searchRecycleTarget()
throw(LoadEnvException, css::uno::RuntimeException);
/** @short because showing of a frame is needed more then once ...
/** @short because showing of a frame is needed more than once ...
it's implemented as an separate method .-)
@descr Note: Showing of a frame is bound to a special feature ...
......
......@@ -1481,7 +1481,7 @@ css::uno::Reference< css::frame::XFrame > LoadEnv::impl_searchRecycleTarget()
// OK this task seems to be usable for recycling
// But we should mark it as such - means set an action lock.
// Otherwise it would be used more then ones or will be destroyed
// Otherwise it would be used more than ones or will be destroyed
// by a close() or terminate() request.
// But if such lock already exist ... it means this task is used for
// any other operation already. Don't use it then.
......
......@@ -68,7 +68,7 @@ DispatchRecorderSupplier::~DispatchRecorderSupplier()
/**
@short set a new dispatch recorder on this supplier
@descr Because there can exist more then one recorder implementations
@descr Because there can exist more than one recorder implementations
(to generate java/basic/... scripts from recorded data) it must
be possible to set it on a supplier.
......
......@@ -420,7 +420,7 @@ private:
bevor using).
And further it's not possible to use a simple boolean value here.
Because if more then one operation iterates over the same stl container ...
Because if more than one operation iterates over the same stl container ...
(only to modify it's elements but dont add new or removing existing ones!)
it should be possible doing so. But we must guarantee that the last operation reset
this lock ... not the first one ! So we use a "ref count" mechanism for that."
......@@ -762,7 +762,7 @@ private:
- patch the configuration.
Note further: It paches the info struct
more then ones. E.g. the new temp URL is set
more than ones. E.g. the new temp URL is set
before the file is saved. And the old URL is removed
only if removing oft he old file was successfully.
If this method returns without an exception - everything
......@@ -1130,7 +1130,7 @@ class CacheLockGuard
// this variable knows the state of the "cache lock"
sal_Int32& m_rCacheLock;
// to prevent increasing/decreasing of m_rCacheLock more then ones
// to prevent increasing/decreasing of m_rCacheLock more than ones
// we must know if THIS guard has an actual lock set there !
bool m_bLockedByThisGuard;
......@@ -2454,7 +2454,7 @@ void AutoRecovery::implts_registerDocument(const css::uno::Reference< css::frame
// Can happen if events came in asynchronous on recovery time.
// Then our cache was filled from the configuration ... but now we get some
// asynchronous events from the global event broadcaster. We must be sure that
// we dont add the same document more then once.
// we dont add the same document more than once.
AutoRecovery::TDocumentList::iterator pIt = AutoRecovery::impl_searchDocument(m_lDocCache, xDocument);
if (pIt != m_lDocCache.end())
{
......@@ -3228,7 +3228,7 @@ AutoRecovery::ETimerType AutoRecovery::implts_openDocs(const DispatchParams& aPa
// damaged on last saving time ...
// Then our listener need this notification.
// If it was damaged during last "try to open" ...
// it will be notified more then once. SH.. HAPPENS ...
// it will be notified more than once. SH.. HAPPENS ...
// } /* SAFE */
g.clear();
implts_informListener(eJob,
......@@ -3718,7 +3718,7 @@ void AutoRecovery::implts_doEmergencySave(const DispatchParams& aParams)
implts_persistAllActiveViewNames();
// The called method for saving documents runs
// during normal AutoSave more then once. Because
// during normal AutoSave more than once. Because
// it postpone active documents and save it later.
// That is normaly done by recalling it from a timer.
// Here we must do it immediately!
......@@ -3786,7 +3786,7 @@ void AutoRecovery::implts_doSessionSave(const DispatchParams& aParams)
implts_persistAllActiveViewNames();
// The called method for saving documents runs
// during normal AutoSave more then once. Because
// during normal AutoSave more than once. Because
// it postpone active documents and save it later.
// That is normaly done by recalling it from a timer.
// Here we must do it immediately!
......
......@@ -499,7 +499,7 @@ css::uno::Reference< css::lang::XComponent > SAL_CALL Desktop::getCurrentCompone
/*-************************************************************************************************************
@interface XDesktop
@short return the current active frame in hierarchy
@descr There can be more then one different active paths in our frame hierarchy. But only one of them
@descr There can be more than one different active paths in our frame hierarchy. But only one of them
could be the most active frame (normal he has the focus).
Don't mix it with getActiveFrame()! That will return our current active frame, which must be
a direct child of us and should be a part(!) of an active path.
......@@ -902,7 +902,7 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Desktop::findFrame( const OUS
(sTargetFrameName==SPECIALTARGET_MENUBAR ) || // valid for dispatches - not for findFrame()!
(sTargetFrameName==SPECIALTARGET_PARENT ) || // we have no parent by definition
(sTargetFrameName==SPECIALTARGET_BEAMER ) // beamer frames are allowed as child of tasks only -
// and they exist more then ones. We have no idea which our sub tasks is the right one
// and they exist more than ones. We have no idea which our sub tasks is the right one
)
{
return NULL;
......
......@@ -325,7 +325,7 @@ private:
/*-****************************************************************************************************
@short helper methods
@descr Follow methods are needed at different points of our code (more then ones!).
@descr Follow methods are needed at different points of our code (more than ones!).
@attention Threadsafe methods are signed by "implts_..."!
*//*-*****************************************************************************************************/
......@@ -806,7 +806,7 @@ void SAL_CALL Frame::initialize( const css::uno::Reference< css::awt::XWindow >&
if ( m_xContainerWindow.is() )
throw css::uno::RuntimeException(
"Frame::initialized() is called more then once, which isnt useful nor allowed.",
"Frame::initialized() is called more than once, which isnt useful nor allowed.",
static_cast< css::frame::XFrame* >(this));
// Look for rejected calls first!
......@@ -2207,7 +2207,7 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL Frame::queryDispatch( cons
{
const char UNO_PROTOCOL[] = ".uno:";
// Don't check incoming parameter here! Our helper do it for us and it isn't a good idea to do it more then ones!
// Don't check incoming parameter here! Our helper do it for us and it isn't a good idea to do it more than ones!
// But look for rejected calls!
TransactionGuard aTransaction( m_aTransactionManager, E_HARDEXCEPTIONS );
......@@ -2229,7 +2229,7 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL Frame::queryDispatch( cons
}
/*-****************************************************************************************************
@short handle more then ones dispatches at same call
@short handle more than ones dispatches at same call
@descr Returns a sequence of dispatches. For details see the queryDispatch method.
For failed dispatches we return empty items in list!
......@@ -2242,7 +2242,7 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL Frame::queryDispatch( cons
*//*-*****************************************************************************************************/
css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Frame::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw( css::uno::RuntimeException, std::exception )
{
// Don't check incoming parameter here! Our helper do it for us and it isn't a good idea to do it more then ones!
// Don't check incoming parameter here! Our helper do it for us and it isn't a good idea to do it more than ones!
// But look for rejected calls!
TransactionGuard aTransaction( m_aTransactionManager, E_HARDEXCEPTIONS );
......@@ -2457,7 +2457,7 @@ void SAL_CALL Frame::windowClosing( const css::lang::EventObject& ) throw( css::
/*ATTENTION!
Don't try to suspend the controller here! Because it's done inside used dispatch().
Otherwhise the dialog "would you save your changes?" will be shown more then once ...
Otherwhise the dialog "would you save your changes?" will be shown more than once ...
*/
/* SAFE */
......
......@@ -692,7 +692,7 @@ void PathSettings::impl_storePath(const PathSettings::PathInfo& aPath)
// on loading time really represent an user setting !!!
// Check if the given path exists inside the old configuration.
// Because our new configuration knows more then the list of old paths ... !
// Because our new configuration knows more than the list of old paths ... !
if (xCfgOld->hasByName(aResubstPath.sPathName))
{
css::uno::Reference< css::beans::XPropertySet > xProps(xCfgOld, css::uno::UNO_QUERY_THROW);
......@@ -715,7 +715,7 @@ void PathSettings::impl_mergeOldUserPaths( PathSettings::PathInfo& rPath,
if (rPath.bIsSinglePath)
{
SAL_WARN_IF(lOld.size()>1, "fwk", "PathSettings::impl_mergeOldUserPaths(): Single path has more then one path value inside old configuration (Common.xcu)!");
SAL_WARN_IF(lOld.size()>1, "fwk", "PathSettings::impl_mergeOldUserPaths(): Single path has more than one path value inside old configuration (Common.xcu)!");
if (! rPath.sWritePath.equals(sOld))
rPath.sWritePath = sOld;
}
......@@ -1192,7 +1192,7 @@ void PathSettings::impl_setPathValue( sal_Int32 nID ,
if (aChangePath.bIsSinglePath)
{
SAL_WARN_IF(lList.size()>1, "fwk", "PathSettings::impl_setPathValue(): You try to set more then path value for a defined SINGLE_PATH!");
SAL_WARN_IF(lList.size()>1, "fwk", "PathSettings::impl_setPathValue(): You try to set more than path value for a defined SINGLE_PATH!");
if ( !lList.empty() )
aChangePath.sWritePath = *(lList.begin());
else
......
......@@ -158,7 +158,7 @@ void SAL_CALL AcceleratorConfigurationReader::startElement(const OUString&
{
// Attention: Its not really a reason to throw an exception and kill the office, if the configuration contains
// multiple registrations for the same key :-) Show a warning ... and ignore the second item.
// THROW_PARSEEXCEPTION("Command is registered for the same key more then once.")
// THROW_PARSEEXCEPTION("Command is registered for the same key more than once.")
SAL_INFO("fwk",
"AcceleratorConfigurationReader::startElement(): Double registration detected. Command=\"" <<
sCommand <<
......
......@@ -64,7 +64,7 @@ class COMPHELPER_DLLPUBLIC ConfigurationHelper
/** returns access to the specified configuration package.
*
* This method should be used, if e.g. more then one request to the same
* This method should be used, if e.g. more than one request to the same
* configuration package is needed. The configuration access can be cached
* outside and used inbetween.
*
......
......@@ -36,7 +36,7 @@ namespace com { namespace sun { namespace star { namespace uno {
namespace framework{
/**
@short Prevent us from showing the same interaction more then once during
@short Prevent us from showing the same interaction more than once during
the same transaction.
@descr Every interaction provided to this helper will be safed ... handled by the internal
......
......@@ -146,7 +146,7 @@ class SVT_DLLPUBLIC AcceleratorExecute : private TMutexInit
/** @short init this instance.
@descr It must be called as first method after creation.
And further it can be called more then once ...
And further it can be called more than once ...
but at least its should be used one times only.
Otherwise nobody can say, which asynchronous
executions will be used inside the old and which one
......
......@@ -130,7 +130,7 @@ public:
/**
* This method sets a continuation for the request. It also can be used
* to reset the continuation set by a previous XInteractionHandler::handle
* call in order to use this request object more then once.
* call in order to use this request object more than once.
*
* @param rxSelection is the interaction continuation to activate for
* the request or an empty reference in order to reset the
......
......@@ -61,7 +61,7 @@ public class ComponentBase extends WeakBase implements XComponent
{
// Determine in a thread-safe way if this is the first call to this method.
// Only then we proceed with the notification of event listeners.
// It is an error to call this method more then once.
// It is an error to call this method more than once.
boolean bDoDispose= false;
synchronized (this)
{
......
......@@ -201,7 +201,7 @@ void MergeNewStyleDicsAndOldStyleDics(
sal_Int32 nOldStyleDics = aIt2->aLocaleNames.getLength();
// old style dics should only have one language listed...
DBG_ASSERT( nOldStyleDics, "old style dictionary with more then one language found!");
DBG_ASSERT( nOldStyleDics, "old style dictionary with more than one language found!");
if (nOldStyleDics > 0)
{
if (linguistic::LinguIsUnspecified( aIt2->aLocaleNames[0]))
......
......@@ -80,7 +80,7 @@ public class Interceptor implements com.sun.star.frame.XFrameActionListener,
* @member m_xMaster use this interceptor if he doesn't handle queried dispatch request
* @member m_xSlave we can forward all unhandled requests to this slave interceptor
* @member m_xFrame intercepted frame
* @member m_bDead there exist more then one way to finish an object of this class - we must know it sometimes
* @member m_bDead there exist more than one way to finish an object of this class - we must know it sometimes
*/
private com.sun.star.frame.XDispatchProvider m_xMaster ;
private com.sun.star.frame.XDispatchProvider m_xSlave ;
......
......@@ -76,7 +76,7 @@ public class NativeView extends java.awt.Canvas
* Why here?
* Because the handle seems to be available for already visible windows
* only. So it's the best place to get it. Special helper method
* can be called more then ones - but call native code one times only
* can be called more than ones - but call native code one times only
* and safe the handle and the system type on our members maHandle/maSystem!
*/
public void setVisible(boolean bState)
......
......@@ -53,7 +53,7 @@ class OnewayExecutor extends Thread
/**
* const
* We define some request for some well known oneway interface
* calls here too. So they mustn't be declared more then ones.
* calls here too. So they mustn't be declared more than ones.
* Of course it's not necessary to use it ... but why not :-)
*/
......
......@@ -78,7 +78,7 @@ class StatusListener implements com.sun.star.frame.XStatusListener,
* @member m_aURL and of course we must be registered for a special URL
* @member m_bIsActionListener indicates if we are currently registered as a listener for frame action events or not
* @member m_bIsStatusListener indicates if we are currently registered as a listener for status events or not
* @member m_bDead there exist more then one way to finish an object of this class - we must know it sometimes
* @member m_bDead there exist more than one way to finish an object of this class - we must know it sometimes
*/
private Component m_rControl ;
private String m_sTrueText ;
......
......@@ -189,7 +189,7 @@ public class AsciiReplaceFilter
*/
// analyze own configuration data for our own internal filter name!
// Important for generic filter services, which are registered more then once.
// Important for generic filter services, which are registered more than once.
// They can use this information to find out, which specialization of it
// is required.
for (int i=0; i<lConfig.length; ++i)
......
......@@ -141,7 +141,7 @@ public class Test05 implements StorageTest {
if ( xSubStream1 == null || xSubStream2 == null )
return false;
// it should be possible to have more then one copy of stream for reading
// it should be possible to have more than one copy of stream for reading
XStream xSubStream2clone = m_aTestHelper.OpenStream( xSubSubStorage,
"SubStream2",
ElementModes.READ | ElementModes.NOCREATE );
......
......@@ -48,7 +48,7 @@ module com { module sun { module star { module document {
Example: "com.company.devision.DetectService"
<br>
Note that this really means the implementation name of the service.
Because it's not possible otherwise to distinguish between more then one
Because it's not possible otherwise to distinguish between more than one
registered detect services in same office installation! But it's possible for
the generic type detection to create an UNO service by his implementation name too.
</li>
......
......@@ -78,7 +78,7 @@ published service ExtendedTypeDetectionFactory
<td>[string]</td>
<td>It means the UNO implementation name of the detector component.
Note: It means the really the implementation instead of the UNO service name.
Because it's not possible to distinguish between more then one components; if all of them
Because it's not possible to distinguish between more than one components; if all of them
uses a generic service identifier!</td>
</tr>
<tr>
......
......@@ -154,7 +154,7 @@ published service FilterFactory
<td>[string]</td>
<td>It means the UNO implementation name of the filter component.
Note: It really means the implementation instead of the UNO service name.
Because it's not possible to distinguish between more then one filters; if all of them
Because it's not possible to distinguish between more than one filters; if all of them
uses a generic identifier!</td>
</tr>
<tr>
......@@ -171,7 +171,7 @@ published service FilterFactory
<tr>
<td><em>FileFormatVersion</em></td>
<td>[integer]</td>
<td>It specifies the supported file format version if there exist more then ones.</td>
<td>It specifies the supported file format version if there exist more than ones.</td>
</tr>
<tr>
<td><em>TemplateName</em></td>
......
......@@ -38,7 +38,7 @@
/** specifies a document which consists of multiple pages
with drawings.
<p>Because its function is needed more then once, its defined as generic one.</p>
<p>Because its function is needed more than once, its defined