Kaydet (Commit) d5fb4b73 authored tarafından Julien Nabet's avatar Julien Nabet

Typos

Change-Id: I0c17f40b3e593ae3771fa751a817f84bf2f2323d
üst 887c088f
......@@ -299,7 +299,7 @@ class ActivityChooserModel extends DataSetObservable {
private boolean mHistoricalRecordsChanged = true;
/**
* Hander for scheduling work on client tread.
* Handler for scheduling work on client thread.
*/
private final Handler mHandler = new Handler();
......
Important: The hander component extensionoptions.jar in the extensions may not
Important: The handler component extensionoptions.jar in the extensions may not
contain exactly the same sources as the one build in the handler directory. To
make sure that debugging works build the handler directory and put the
extensionoptions.jar into the extension.
......@@ -10,7 +10,7 @@ leaf1.oxt: Defines a leaf under the node WriterNode
leaf1mod.oxt: Defines a leaf under the node WriterNode
It has a douplicate entry in the manifest.xml (OptionsDialog.xcu). This would cause a DisposedException when uninstalling on OOo 3.0 and prevent the extension from being uninstalled. This is actually a bug of the extensions. However, the error is difficult to investigate. Therefore this was fixed to make OOo more robust (i96690).
It has a duplicate entry in the manifest.xml (OptionsDialog.xcu). This would cause a DisposedException when uninstalling on OOo 3.0 and prevent the extension from being uninstalled. This is actually a bug of the extensions. However, the error is difficult to investigate. Therefore this was fixed to make OOo more robust (i96690).
================================================================================
leaf2.oxt: Defines a leaf under a node that has a name which requires special
......
......@@ -67,7 +67,7 @@ MailToDispatcher::~MailToDispatcher()
/**
@short decide if this dispatch implementation can be used for requested URL or not
@descr A protocol handler is registerd for an URL pattern inside configuration and will
@descr A protocol handler is registered for an URL pattern inside configuration and will
be asked by the generic dispatch mechanism inside framework, if he can handle this
special URL which match his registration. He can agree by returning of a valid dispatch
instance or disagree by returning <NULL/>.
......
......@@ -69,7 +69,7 @@ ServiceHandler::~ServiceHandler()
/**
@short decide if this dispatch implementation can be used for requested URL or not
@descr A protocol handler is registerd for an URL pattern inside configuration and will
@descr A protocol handler is registered for an URL pattern inside configuration and will
be asked by the generic dispatch mechanism inside framework, if he can handle this
special URL which match his registration. He can agree by returning of a valid dispatch
instance or disagree by returning <NULL/>.
......@@ -231,7 +231,7 @@ css::uno::Reference< css::uno::XInterface > ServiceHandler::implts_dispatch( con
/**
@short add/remove listener for state events
@descr We use an internal container to hold such registered listener. This container lives if we live.
And if call pas registration as non breakable transaction - we can accept the request without
And if call pass registration as non breakable transaction - we can accept the request without
any explicit lock. Because we share our mutex with this container.
@param xListener
......
......@@ -60,7 +60,7 @@ typedef std::vector<SfxUnoControllerItem*> SfxUnoControllerArr_Impl;
#define SFX_CALLMODE_SLOT 0x00 // sync/async from Slot
#define SFX_CALLMODE_SYNCHRON 0x01 // synchronously in the same Stackframe
#define SFX_CALLMODE_ASYNCHRON 0x02 // asynchronously via AppEvent
#define SFX_CALLMODE_RECORD 0x04 // take into accont while recording
#define SFX_CALLMODE_RECORD 0x04 // take into account while recording
#define SFX_CALLMODE_API 0x08 // API call (silent)
#define SFX_CALLMODE_MODAL 0x10 // despite ModalMode
......@@ -85,7 +85,7 @@ class SFX2_DLLPUBLIC SfxBindings: public SfxBroadcaster
However these instances will be handled by the Macro <SFX_BINDINGS>
or the associated <SfxViewFrame>.
The SfxBindings manages all of its Slot-Ids bound by the registerd
The SfxBindings manages all of its Slot-Ids bound by the registered
controllers and keeps a cache of the <Slot-Server> respectively.
(it is what we call the combination of SfxShell instance and SfxSlot).
In the SfxBindings it is stored, if and in this case which controllers
......@@ -220,7 +220,7 @@ inline bool SfxBindings::IsInRegistrations() const
/* [Description]
Determines whether the <SfxContollerItems> SfxBindings instance is
registerd or unregisted, i.e. <SfxBindings::EnterRegistrations()>
registered or unregistered, i.e. <SfxBindings::EnterRegistrations()>
calls that have not been closed by <SfxBindings::LeaveRegistrations()>.
[Return value]
......
......@@ -25,7 +25,7 @@ import com.sun.star.lang.DisposedException;
* For every jobs thread id exists a job queue which is registered
* at the <code>ThreadPool</code>.
* A JobQueue is splitted in a sync job queue and an async job queue.
* The sync job queue is the registerd queue, it delegates async jobs
* The sync job queue is the registered queue, it delegates async jobs
* (put by <code>putjob</code>) into the async queue, which is only
* known by the sync queue.
* <p>
......
......@@ -79,7 +79,7 @@ namespace sw
area, so this sw::Frame simplies matters by providing a single unified
view of the multitute of elements in writer and their differing quirks.
A sw::Frame wraps a writer frame and is guaranted to have a suitable
A sw::Frame wraps a writer frame and is guaranteed to have a suitable
anchor position available from it. It hides much of the needless
complexity of the multitude of floating/inline elements in writer, it...
......
......@@ -43,7 +43,7 @@ published interface XJavaThreadRegister_11: com::sun::star::uno::XInterface
void registerThread();
/** revokes the current thread from the list of registerd threads.
/** revokes the current thread from the list of registered threads.
<p>This method should be called at the end of every JNI call from Java. </p>
*/
......
......@@ -1110,9 +1110,9 @@ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByShortName(const OU
{
if ( sName == "swriter" )
return E_WRITER;
if (sName.equalsIgnoreAsciiCase("swriter/Web")) // sometimes they are registerd for swriter/web :-(
if (sName.equalsIgnoreAsciiCase("swriter/Web")) // sometimes they are registered for swriter/web :-(
return E_WRITERWEB;
if (sName.equalsIgnoreAsciiCase("swriter/GlobalDocument")) // sometimes they are registerd for swriter/globaldocument :-(
if (sName.equalsIgnoreAsciiCase("swriter/GlobalDocument")) // sometimes they are registered for swriter/globaldocument :-(
return E_WRITERGLOBAL;
if ( sName == "scalc" )
return E_CALC;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment