fdo#60724 correct spelling
Change-Id: Ieb653adbd0cb4371ec5db57e70bcc551872f647f
This commit is contained in:
parent
435f5e30c9
commit
c32b6be06b
@ -1050,9 +1050,9 @@ class ActivityChooserModel extends DataSetObservable {
|
||||
});
|
||||
}
|
||||
} catch (XmlPullParserException xppe) {
|
||||
Log.e(LOG_TAG, "Error reading historical recrod file: " + mHistoryFileName, xppe);
|
||||
Log.e(LOG_TAG, "Error reading historical record file: " + mHistoryFileName, xppe);
|
||||
} catch (IOException ioe) {
|
||||
Log.e(LOG_TAG, "Error reading historical recrod file: " + mHistoryFileName, ioe);
|
||||
Log.e(LOG_TAG, "Error reading historical record file: " + mHistoryFileName, ioe);
|
||||
} finally {
|
||||
if (fis != null) {
|
||||
try {
|
||||
@ -1081,7 +1081,7 @@ class ActivityChooserModel extends DataSetObservable {
|
||||
try {
|
||||
fos = mContext.openFileOutput(mHistoryFileName, Context.MODE_PRIVATE);
|
||||
} catch (FileNotFoundException fnfe) {
|
||||
Log.e(LOG_TAG, "Error writing historical recrod file: " + mHistoryFileName, fnfe);
|
||||
Log.e(LOG_TAG, "Error writing historical record file: " + mHistoryFileName, fnfe);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1112,11 +1112,11 @@ class ActivityChooserModel extends DataSetObservable {
|
||||
Log.i(LOG_TAG, "Wrote " + recordCount + " historical records.");
|
||||
}
|
||||
} catch (IllegalArgumentException iae) {
|
||||
Log.e(LOG_TAG, "Error writing historical recrod file: " + mHistoryFileName, iae);
|
||||
Log.e(LOG_TAG, "Error writing historical record file: " + mHistoryFileName, iae);
|
||||
} catch (IllegalStateException ise) {
|
||||
Log.e(LOG_TAG, "Error writing historical recrod file: " + mHistoryFileName, ise);
|
||||
Log.e(LOG_TAG, "Error writing historical record file: " + mHistoryFileName, ise);
|
||||
} catch (IOException ioe) {
|
||||
Log.e(LOG_TAG, "Error writing historical recrod file: " + mHistoryFileName, ioe);
|
||||
Log.e(LOG_TAG, "Error writing historical record file: " + mHistoryFileName, ioe);
|
||||
} finally {
|
||||
if (fos != null) {
|
||||
try {
|
||||
|
@ -272,7 +272,7 @@ SoundHandler::~SoundHandler()
|
||||
Playing of sound is asynchron everytime.
|
||||
|
||||
@attention We must hold us alive by ourself ... because we use async. vcl sound player ... but playing is started
|
||||
in async interface call "dispatch()" too. And caller forget us imediatly. But then our uno ref count
|
||||
in async interface call "dispatch()" too. And caller forget us immediately. But then our uno ref count
|
||||
will decreased to 0 and will die. The only solution is to use own reference to our implementation.
|
||||
But we do it for realy started jobs only and release it during call back of vcl.
|
||||
|
||||
|
@ -142,8 +142,8 @@ public:
|
||||
virtual sal_Int32 SAL_CALL fillHandles( /*out*/sal_Int32* _pHandles, const ::com::sun::star::uno::Sequence< OUString >& _rPropNames );
|
||||
|
||||
/** returns information about a property of the aggregate.
|
||||
@param _pPropName points to a string to recieve the property name. No name is returned if this is NULL.
|
||||
@param _pOriginalHandle points to a sal_Int32 to recieve the original property hande. No original handle is returned
|
||||
@param _pPropName points to a string to receive the property name. No name is returned if this is NULL.
|
||||
@param _pOriginalHandle points to a sal_Int32 to receive the original property hande. No original handle is returned
|
||||
if this is NULL.
|
||||
@param _nHandle the handle of the property as got by, for instance, fillHandles
|
||||
|
||||
|
@ -1161,7 +1161,7 @@ AC_ARG_ENABLE(winegcc,
|
||||
|
||||
AC_ARG_ENABLE(liblangtag,
|
||||
AS_HELP_STRING([--disable-liblangtag],
|
||||
[Disable use of liblangtag, and insted use an own simple
|
||||
[Disable use of liblangtag, and instead use an own simple
|
||||
implementation.]),
|
||||
)
|
||||
|
||||
|
@ -41,7 +41,7 @@ namespace connectivity { namespace jdbc
|
||||
{
|
||||
public:
|
||||
/** creates the instance. If isActive returns <FALSE/> afterwards, then an exception
|
||||
happend in the JVM, which should be raised as UNO exception by the caller
|
||||
happened in the JVM, which should be raised as UNO exception by the caller
|
||||
|
||||
@param environment
|
||||
the current JNI environment
|
||||
|
@ -213,7 +213,7 @@ protected:
|
||||
|
||||
/** create a object from it's persistent data within the configuration. To be overwritten by derived classes.
|
||||
@param _rName the name the object has within the container
|
||||
@return the newly created object or an empty reference if somthing went wrong
|
||||
@return the newly created object or an empty reference if something went wrong
|
||||
*/
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XContent > createObject(
|
||||
const OUString& _rName) = 0;
|
||||
|
@ -283,7 +283,7 @@ namespace
|
||||
/**
|
||||
* The value of m_nLimit is updated when LimitBox loose its focus
|
||||
* So in those case when execution needs recent data, grab the focus
|
||||
* (e.g. execute SQL statment, change views)
|
||||
* (e.g. execute SQL statement, change views)
|
||||
*/
|
||||
void grabFocusFromLimitBox( OQueryController& _rController )
|
||||
{
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef _EXTENSIONS_COMPONENT_MODULE_HXX_
|
||||
#define _EXTENSIONS_COMPONENT_MODULE_HXX_
|
||||
|
||||
/** you may find this file helpfull if you implement a component (in it's own library) which can't use
|
||||
/** you may find this file helpful if you implement a component (in it's own library) which can't use
|
||||
the usual infrastructure.<br/>
|
||||
More precise, you find helper classes to ease the use of resources and the registration of services.
|
||||
<p>
|
||||
|
@ -74,7 +74,7 @@ places...
|
||||
|
||||
<noframes/>
|
||||
|
||||
<!-- the body tag has no influance here,
|
||||
<!-- the body tag has no influence here,
|
||||
we add it for good style.
|
||||
-->
|
||||
|
||||
|
@ -514,7 +514,7 @@
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<!-- Fastest cell repetition by creating cell once and copying, works not for
|
||||
a) cells with formula (need of actual cell postition)
|
||||
a) cells with formula (need of actual cell position)
|
||||
b) cells, which start with ss:Index (as ss:Index is not allowed to be repeated) -->
|
||||
<xsl:when test="not(@table:formula) and not($setIndex)">
|
||||
<!-- In case a non-empty cell is being repeated, the cell will be created
|
||||
|
@ -188,7 +188,7 @@ public:
|
||||
the aggregate. In this case, you <em>have</em> to call doSetDelegator within your
|
||||
own constructor.
|
||||
|
||||
This is helpfull, if your derived class wants to cache an interface of the aggregate.
|
||||
This is helpful, if your derived class wants to cache an interface of the aggregate.
|
||||
In this case, the aggregate needs to be queried for this interface <b>before</b> the
|
||||
<member scope="com::sun::star::uno">XAggregation::setDelegator</member> call.
|
||||
|
||||
|
@ -193,7 +193,7 @@ class FWE_DLLPUBLIC PreventDuplicateInteraction : private ThreadHelpBase2
|
||||
@short add a new interaction to the list of interactions, which
|
||||
must be handled by this helper.
|
||||
|
||||
@descr This method must be called immediatly after a new instance of this helper was
|
||||
@descr This method must be called immediately after a new instance of this helper was
|
||||
created. Without such list of InteractionRules, this instances does nothing!
|
||||
On the other side there is no possibility to remove rules.
|
||||
So the same instance cant be used within different transactions.
|
||||
|
@ -262,8 +262,8 @@ class PropHelper
|
||||
*
|
||||
* @param aCurrentValue contains the current value for this property
|
||||
* @param aNewValue contains the new value for this property
|
||||
* @param aOldValue returns the current value, in case somthing will be changed
|
||||
* @param aChangedValue returns the new value, in case somthing will be changed
|
||||
* @param aOldValue returns the current value, in case something will be changed
|
||||
* @param aChangedValue returns the new value, in case something will be changed
|
||||
*
|
||||
* @return <True/> if value of this property will be changed; <False/> otherwise.
|
||||
*/
|
||||
|
@ -103,7 +103,7 @@ struct DispatchParams
|
||||
|
||||
@descr If our dispatch() method was forced to start the
|
||||
internal operation asynchronous ... we send an event
|
||||
to start and return immediatly. But we must be shure that
|
||||
to start and return immediately. But we must be shure that
|
||||
our instance live if the event callback reach us.
|
||||
So we hold an uno reference to ourself.
|
||||
*/
|
||||
|
@ -117,7 +117,7 @@ Oxt_Handler::~Oxt_Handler()
|
||||
Playing of sound is asynchron everytime.
|
||||
|
||||
@attention We must hold us alive by ourself ... because we use async. vcl sound player ... but playing is started
|
||||
in async interface call "dispatch()" too. And caller forget us imediatly. But then our uno ref count
|
||||
in async interface call "dispatch()" too. And caller forget us immediately. But then our uno ref count
|
||||
will decreased to 0 and will die. The only solution is to use own reference to our implementation.
|
||||
But we do it for realy started jobs only and release it during call back of vcl.
|
||||
|
||||
|
@ -186,7 +186,7 @@ void ConfigAccess::close()
|
||||
@descr It's not allowed to safe this c++ (!) reference outside. You have
|
||||
to use it directly. Further you must use our public lock member m_aLock
|
||||
to synchronize your code with our internal structures and our interface
|
||||
methods. Acquire it before you call cfg() and release it afterwards immediatly.
|
||||
methods. Acquire it before you call cfg() and release it afterwards immediately.
|
||||
|
||||
E.g.: ConfigAccess aAccess(...);
|
||||
ReadGuard aReadLock(aAccess.m_aLock);
|
||||
|
@ -68,7 +68,7 @@ class ActionLockGuard : private ThreadHelpBase
|
||||
}
|
||||
|
||||
//---------------------------------------
|
||||
/** @short initialize new guard instance and lock the given resource immediatly.
|
||||
/** @short initialize new guard instance and lock the given resource immediately.
|
||||
|
||||
@param xLock
|
||||
points to the outside resource, which should be locked.
|
||||
|
@ -203,9 +203,9 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL JobD
|
||||
|
||||
If a job is already running, (it can only occure for asynchronous jobs)
|
||||
don't start the same job a second time. Queue in the given dispatch parameter
|
||||
and return immediatly. If the current running job call us back, we will start this
|
||||
and return immediately. If the current running job call us back, we will start this
|
||||
new dispatch request.
|
||||
If no job is running - queue the parameter too! But then start the new job immediatly.
|
||||
If no job is running - queue the parameter too! But then start the new job immediately.
|
||||
We have to queue it every time - because it hold us alive by ref count!
|
||||
|
||||
@param aURL
|
||||
|
@ -2912,7 +2912,7 @@ void Frame::implts_setIconOnWindow()
|
||||
|
||||
/*-************************************************************************************************************//**
|
||||
@short helper to start/stop listeneing for window events on container window
|
||||
@descr If we get a new container window, we must set it on internal memeber ...
|
||||
@descr If we get a new container window, we must set it on internal member ...
|
||||
and stop listening at old one ... and start listening on new one!
|
||||
But sometimes (in dispose() call!) it's neccessary to stop listeneing without starting
|
||||
on new connections. So we split this functionality to make it easier at use.
|
||||
|
@ -109,7 +109,7 @@ public interface IThreadPool {
|
||||
|
||||
/**
|
||||
* Destroys the thread pool and tries
|
||||
* to join all created threads immediatly.
|
||||
* to join all created threads immediately.
|
||||
*/
|
||||
public void destroy();
|
||||
}
|
||||
|
@ -298,7 +298,7 @@ JVMFWK_DLLPUBLIC sal_Bool SAL_CALL jfw_areEqualJavaInfo(
|
||||
|
||||
<p>As long as the office and the JREs only support one
|
||||
Virtual Machine per process the Java settings, particulary the
|
||||
selected Java, are not effective immediatly after changing when
|
||||
selected Java, are not effective immediately after changing when
|
||||
a VM has already been running. That is, if a JRE A was used to start
|
||||
a VM and then a JRE B is selected, then JRE B will only be used
|
||||
after a restart of the office.</p>
|
||||
|
@ -41,7 +41,7 @@ public class java_complex implements TestBase
|
||||
* This function executes the complex tests given as parameter "-o" or "TestJob". It querys for the correspond class
|
||||
* and crates the JobDescription.
|
||||
* @param param
|
||||
* @return true of all tests run successfuly, esle false
|
||||
* @return true of all tests run successfuly, else false
|
||||
*/
|
||||
public boolean executeTest(TestParameters param)
|
||||
{
|
||||
@ -68,7 +68,7 @@ public class java_complex implements TestBase
|
||||
* This function run the given DescEntry[] as ComplexTest
|
||||
* @param param
|
||||
* @param entries
|
||||
* @return true of all tests run successfuly, esle false
|
||||
* @return true of all tests run successfuly, else false
|
||||
*/
|
||||
public boolean executeTest(TestParameters param, DescEntry[] entries)
|
||||
{
|
||||
|
@ -22,7 +22,7 @@ package lib;
|
||||
* Status represents a result of a testing activity performed. The result is
|
||||
* described in two ways: state and runtime state. The state describes if the
|
||||
* activity was successful (OK state) or not (FAILED state). The runtime state
|
||||
* describes what happend during the activity: the test can be:
|
||||
* describes what happened during the activity: the test can be:
|
||||
* - PASSED - the activity completed normally (although it can complete with
|
||||
* FAILED state)
|
||||
* - SKIPPED - the activity was not performed because of a reason (it also can
|
||||
|
@ -155,7 +155,7 @@ public class _XFrameLoader extends MultiMethodTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* Starts to load a component and then immediatly tries to
|
||||
* Starts to load a component and then immediately tries to
|
||||
* cancel the process. <p>
|
||||
* Has <b>OK</b> status if the process was cancelled or
|
||||
* finished (appropriate listener methods were called).
|
||||
|
@ -106,7 +106,7 @@ public class _XResultSet extends MultiMethodTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* The method is called immediatly after <code>beforeFirst</code>
|
||||
* The method is called immediately after <code>beforeFirst</code>
|
||||
* method test. <p>
|
||||
* Has <b>OK</b> status if method returns <code>true</code>. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
@ -147,7 +147,7 @@ public class _XResultSet extends MultiMethodTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* The method is called immediatly after <code>afterLast</code>
|
||||
* The method is called immediately after <code>afterLast</code>
|
||||
* method test. <p>
|
||||
* Has <b>OK</b> status if method returns <code>true</code> <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
@ -188,7 +188,7 @@ public class _XResultSet extends MultiMethodTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* The method is called immediatly after <code>first</code>
|
||||
* The method is called immediately after <code>first</code>
|
||||
* method test. <p>
|
||||
* Has <b>OK</b> status if method returns <code>true</code>. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
@ -229,7 +229,7 @@ public class _XResultSet extends MultiMethodTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* The method is called immediatly after <code>last</code>
|
||||
* The method is called immediately after <code>last</code>
|
||||
* method test. <p>
|
||||
* Has <b>OK</b> status if method returns <code>true</code>. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
@ -270,7 +270,7 @@ public class _XResultSet extends MultiMethodTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* The method is called immediatly after <code>absolute</code>
|
||||
* The method is called immediately after <code>absolute</code>
|
||||
* method test. <p>
|
||||
* Has <b>OK</b> status if method returns 1. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
|
@ -112,15 +112,15 @@ public class _XSheetFilterable extends MultiMethodTest {
|
||||
log.println("couldn't fill cells " + e.getLocalizedMessage());
|
||||
res = false;
|
||||
} catch (com.sun.star.lang.WrappedTargetException e) {
|
||||
log.println("problems geting Property 'isVisible' " +
|
||||
log.println("problems getting Property 'isVisible' " +
|
||||
e.getLocalizedMessage());
|
||||
res = false;
|
||||
} catch (com.sun.star.beans.UnknownPropertyException e) {
|
||||
log.println("problems geting Property 'isVisible' " +
|
||||
log.println("problems getting Property 'isVisible' " +
|
||||
e.getLocalizedMessage());
|
||||
res = false;
|
||||
}
|
||||
|
||||
tRes.tested("filter()", res);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ public class _XViewFreezable extends MultiMethodTest {
|
||||
/**
|
||||
* Test calls the method, checks returned value, unfreezes panes, calls the
|
||||
* method and checks returned value again. <p>
|
||||
* Has <b> OK </b> status if returned value is true after firts call and
|
||||
* Has <b> OK </b> status if returned value is true after first call and
|
||||
* returned value is false after second. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
* <ul>
|
||||
|
@ -30,7 +30,7 @@ import com.sun.star.beans.PropertyValue;
|
||||
|
||||
/**
|
||||
* Testing <code>com.sun.star.text.NumberingLevel</code><p>
|
||||
* This service is currently konwn as property value of
|
||||
* This service is currently known as property value of
|
||||
* com.sun.star.text.ParagraphProperties.NumberingRules
|
||||
* This test checks only for completnes of implemented properties.
|
||||
* service properties :
|
||||
|
@ -41,7 +41,7 @@ import com.sun.star.uno.XInterface;
|
||||
* the creator which can create instances of
|
||||
* <code>com.sun.star.text.Paragraph</code> service. </li>
|
||||
* <li> <code>'XTEXTINFO'</code> (of type <code>XInstCreator</code>):
|
||||
* the creator which can create instances of soem text content
|
||||
* the creator which can create instances of some text content
|
||||
* service (objects which implement <code>XTextContent</code>).
|
||||
* </li>
|
||||
* <ul> <p>
|
||||
|
@ -22,7 +22,7 @@ module-info:
|
||||
name: factory-report-sun
|
||||
producer: The JFreeReport project - www.jfree.org/jfreereport
|
||||
description: XML-Parsers for OpenOffice.org report definitions. These definitions\
|
||||
are basicly similiar to the old JFreeReport format, with some limited absolute\
|
||||
are basicly similar to the old JFreeReport format, with some limited absolute\
|
||||
positioning capabilities.
|
||||
version.major: 0
|
||||
version.minor: 90
|
||||
|
@ -206,7 +206,7 @@ namespace rptui
|
||||
,OUString& _rDataField
|
||||
,OUString& _rsDefaultFunctionName) const;
|
||||
|
||||
/** fills the memeber m_aDefaultFunctions
|
||||
/** fills the member m_aDefaultFunctions
|
||||
*
|
||||
*/
|
||||
void loadDefaultFunctions();
|
||||
|
@ -724,7 +724,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_shutdownSocket(oslSocket Socket,
|
||||
|
||||
<li><code>osl_Socket_OptionTcpNoDelay</code><br>
|
||||
Disables the Nagle algorithm for send coalescing. (Do not
|
||||
collect data until a packet is full, instead send immediatly.
|
||||
collect data until a packet is full, instead send immediately.
|
||||
This increases network traffic but might improve latency-times.)
|
||||
1 = disables the algorithm, 0 = keeps it enabled.
|
||||
</ul>
|
||||
|
@ -375,7 +375,7 @@ namespace osl
|
||||
|
||||
<li><code>osl_Socket_OptionTcpNoDelay</code><br>
|
||||
Disables the Nagle algorithm for send coalescing. (Do not
|
||||
collect data until a packet is full, instead send immediatly.
|
||||
collect data until a packet is full, instead send immediately.
|
||||
This increases network traffic but might improve latency-times.)
|
||||
1 = disables the algorithm, 0 = keeps it enabled.
|
||||
</ul>
|
||||
|
@ -57,7 +57,7 @@ namespace rtl
|
||||
|
||||
Example: RTL_LOGFILE_CONTEXT( aLog, "Timing for foo-method" );
|
||||
|
||||
RTL_LOGFILE_CONTEXT_TRACE( instance, mesage );
|
||||
RTL_LOGFILE_CONTEXT_TRACE( instance, message );
|
||||
RTL_LOGFILE_CONTEXT_TRACEn( instance, frmt, arg1, .., arg3 );
|
||||
These macros can be used to log information in a "instance" context. The "instance" object
|
||||
is used to log message information. All macros with "frmt" uses printf notation to log timing infos.
|
||||
|
@ -85,7 +85,7 @@ BOOL CALLBACK EnumLocalesProcA( LPSTR lpLocaleStringA )
|
||||
/*
|
||||
get the ISO language code for this locale
|
||||
|
||||
remeber: we call the GetLocaleInfoW function
|
||||
remember: we call the GetLocaleInfoW function
|
||||
because the ansi version of this function returns
|
||||
an error under WinNT/2000 when called with an
|
||||
unicode only lcid
|
||||
|
@ -77,7 +77,7 @@ FltError ImportExcel::Read( void )
|
||||
sal_uInt16 nOpcode;
|
||||
sal_uInt16 nBofLevel = 0;
|
||||
|
||||
OSL_ENSURE( &aIn != NULL, "-ImportExcel::Read(): No Stream - what happend?!" );
|
||||
OSL_ENSURE( &aIn != NULL, "-ImportExcel::Read(): No Stream - what happened?!" );
|
||||
|
||||
SAL_WNODEPRECATED_DECLARATIONS_PUSH
|
||||
::std::auto_ptr< ScfSimpleProgressBar > pProgress( new ScfSimpleProgressBar(
|
||||
|
@ -94,7 +94,7 @@ private:
|
||||
DECL_LINK(TimeoutHandler, Timer*);
|
||||
|
||||
/** Return <TRUE/> when the printer is printing. Return <FALSE/> when
|
||||
the printer is not printing, or there is no printer, or someting
|
||||
the printer is not printing, or there is no printer, or something
|
||||
else went wrong.
|
||||
*/
|
||||
bool IsPrinting (void) const;
|
||||
|
@ -41,7 +41,7 @@ class PreviewRenderer
|
||||
: public SfxListener
|
||||
{
|
||||
public:
|
||||
/** Create a new preview renderer that takes some of its inital values
|
||||
/** Create a new preview renderer that takes some of its initial values
|
||||
from the given output device.
|
||||
@param pTemplate
|
||||
May be NULL.
|
||||
|
@ -133,7 +133,7 @@ protected:
|
||||
control at the lower left of the document window positive values
|
||||
move to the right and negative values move to the left.
|
||||
|
||||
<p>Switching the layer is independant of the view's layer mode. The
|
||||
<p>Switching the layer is independent of the view's layer mode. The
|
||||
layers are switched even when the layer mode is turned off and the
|
||||
layer control is not visible.</p>
|
||||
@param nOffset
|
||||
|
@ -52,7 +52,7 @@ class MasterPageDescriptor;
|
||||
name, and, if available, the page object.
|
||||
|
||||
Entries are accessed via a Token, which is mostly a numerical index but
|
||||
whose values do not neccessarily have to be consecutive.
|
||||
whose values do not necessarily have to be consecutive.
|
||||
*/
|
||||
class MasterPageContainer
|
||||
{
|
||||
|
@ -68,7 +68,7 @@ void Test::test_getContent()
|
||||
{
|
||||
TestZipImpl testImpl(documentName.c_str());
|
||||
bool isPassed = testImpl.test_getContent();
|
||||
CPPUNIT_ASSERT_MESSAGE("Couldn't recieve content buffer form zipfile.", isPassed);
|
||||
CPPUNIT_ASSERT_MESSAGE("Couldn't receive content buffer form zipfile.", isPassed);
|
||||
}
|
||||
|
||||
CPPUNIT_PLUGIN_IMPLEMENT();
|
||||
|
@ -292,7 +292,7 @@ void SAL_CALL CSysShExec::execute( const OUString& aCommand, const OUString& aPa
|
||||
/* #i4789#; jump mark detection on system paths
|
||||
if the given command is a system path (not http or
|
||||
other uri schemes) and seems to have a jump mark
|
||||
and names no existing file (remeber the jump mark
|
||||
and names no existing file (remember the jump mark
|
||||
sign '#' is a valid file name character we remove
|
||||
the jump mark, else ShellExecuteEx fails */
|
||||
OUString preprocessed_command(aCommand);
|
||||
|
@ -407,7 +407,7 @@ static unsigned int hash_compute( struct hash* hash, const char* key, int length
|
||||
/*----------------------------- handle the last (probably partial) block */
|
||||
/* Note: we possibly over-read, which would trigger complaint from VALGRIND
|
||||
* but we mask the undefined stuff if any, so we are still good, thanks
|
||||
* to alignment of memory allocation and tail-memory managment overhead
|
||||
* to alignment of memory allocation and tail-memory management overhead
|
||||
* we always can read 3 bytes past the official end without triggering
|
||||
* a segfault -- if you find a platform/compiler couple for which that postulat
|
||||
* is false, then you just need to over-allocate by 2 more bytes in file_load()
|
||||
|
@ -134,7 +134,7 @@ class SVT_DLLPUBLIC AcceleratorExecute : private TMutexInit
|
||||
=> All currently queued events will be finished. The
|
||||
helper kills itself afterwards. A shutdown of the
|
||||
environment will be recognized ... The helper stop its
|
||||
work immediatly then!
|
||||
work immediately then!
|
||||
*/
|
||||
static AcceleratorExecute* createAcceleratorHelper();
|
||||
|
||||
|
@ -106,7 +106,7 @@ namespace svt
|
||||
*/
|
||||
void addDependentWindow( Window& _rWindow );
|
||||
|
||||
/** resets the controller so that no actions happend anymore.
|
||||
/** resets the controller so that no actions happened anymore.
|
||||
|
||||
The instances is disfunctional after this method has been called.
|
||||
*/
|
||||
|
@ -249,10 +249,10 @@ public:
|
||||
(or more) aspect of the view forwarder.
|
||||
@param aChangeType
|
||||
A change type of <const>VISIBLE_AREA</const> leads to a call to
|
||||
the <member>Update</memeber> which creates accessible objects of
|
||||
the <member>Update</member> which creates accessible objects of
|
||||
new shapes immediately. Other change types are passed to the
|
||||
visible accessible children without calling
|
||||
<member>Update</memeber>.
|
||||
<member>Update</member>.
|
||||
@param pViewForwarder
|
||||
The modified view forwarder. Use this one from now on.
|
||||
*/
|
||||
|
@ -452,7 +452,7 @@ namespace sw
|
||||
|
||||
Word generally requires characters which share the same direction,
|
||||
the same script, and occasionally (depending on the format) the
|
||||
same charset to be exported in independant chunks.
|
||||
same charset to be exported in independent chunks.
|
||||
|
||||
So this function finds these ranges and returns a STL container
|
||||
of CharRuns
|
||||
|
@ -136,7 +136,7 @@ namespace ww
|
||||
/** Find the WinWord sti index of an old <= Word2 stc (style code)
|
||||
|
||||
When importing a Word 2 document we would like to treat styles as
|
||||
similiar to how word 8 does as possible, to this end word will treat
|
||||
similar to how word 8 does as possible, to this end word will treat
|
||||
some styles with special codes as inbuilt styles, and some as user
|
||||
defined styles.
|
||||
|
||||
|
@ -1950,7 +1950,7 @@ void SwWW8ImplReader::MapWrapIntoFlyFmt(SvxMSDffImportRec* pRecord,
|
||||
|
||||
So given that the size of the values remains pretty much the
|
||||
same despite the size of the graphic, we can tell that the
|
||||
polygon is measured in units that are independant of the
|
||||
polygon is measured in units that are independent of the
|
||||
graphic. But why does the left corner move a different value
|
||||
to the left each time, and why does the bottom move upwards
|
||||
each time, when the right and top remain at the same value ?
|
||||
|
@ -3075,7 +3075,7 @@ bool SwWW8ImplReader::HandlePageBreakChar()
|
||||
/*
|
||||
If its a 0x0c without a paragraph end before it, act like a
|
||||
paragraph end, but nevertheless, numbering (and perhaps other
|
||||
similiar constructs) do not exist on the para.
|
||||
similar constructs) do not exist on the para.
|
||||
*/
|
||||
//xushanchuan add for issue106569
|
||||
if (!bWasParaEnd && IsTemp)
|
||||
|
@ -28,7 +28,7 @@
|
||||
Should be removed as soon as all code parts have been reviewed
|
||||
and the correct type is known. Most of the times ULONG is meant
|
||||
to be a 32-Bit unsigned integer type as sal_uInt32 is often
|
||||
used for data exchange or for similiar method args. */
|
||||
used for data exchange or for similar method args. */
|
||||
typedef sal_uIntPtr sal_uLong; /* Replaces type ULONG */
|
||||
|
||||
// misc. macros to leverage platform and compiler differences
|
||||
|
@ -249,7 +249,7 @@ class UCBHELPER_DLLPUBLIC InterceptedInteraction : public ::cppu::WeakImplHelper
|
||||
So the method impl_interceptRequest() uses the right continuation automaticly.
|
||||
|
||||
If this method was overwritten and something different "NO_INTERCEPTED"
|
||||
is returned, the method impl_interceptRequest() will return immediatly with
|
||||
is returned, the method impl_interceptRequest() will return immediately with
|
||||
the result, which is returned by this intercepted() method.
|
||||
Then the continuations must be selected inside the intercepted() call!
|
||||
|
||||
|
@ -177,7 +177,7 @@ public:
|
||||
|
||||
/**
|
||||
* The implemetation of this method always returns 0. Override this
|
||||
* method, if necassary.
|
||||
* method, if necessary.
|
||||
*/
|
||||
virtual sal_Int16 SAL_CALL
|
||||
getCapabilities()
|
||||
|
@ -90,7 +90,7 @@ public:
|
||||
the constants of <type>AccessibleStateType</type>.
|
||||
|
||||
@return
|
||||
Returns <TRUE/> if the given state is a memeber of this object's
|
||||
Returns <TRUE/> if the given state is a member of this object's
|
||||
state set and <FALSE/> otherwise.
|
||||
*/
|
||||
virtual sal_Bool SAL_CALL contains (sal_Int16 aState)
|
||||
|
@ -39,7 +39,7 @@ struct TempFile_Impl;
|
||||
the UCB helper classes for streams. For convenience use UcbStreamHelper.
|
||||
A Tempfile always has a "physical" file name ( a file name in the local computers host notation ) but it has a
|
||||
"UCB compatible" URL only if a UCP for the local file system exists. This URL may have its own URL scheme
|
||||
( not neccessarily "file://" ! ). The TempFile class methods take this into account, but other simple conversions like
|
||||
( not necessarily "file://" ! ). The TempFile class methods take this into account, but other simple conversions like
|
||||
the osl functions do not.
|
||||
So it is a potential error to convert between the filename and the URL of a TempFile object using functions or methods
|
||||
outside this class.
|
||||
|
@ -177,7 +177,7 @@ sal_Bool SAL_CALL AccessibleStateSetHelper::isEmpty ()
|
||||
the constants of <type>AccessibleStateType</type>.
|
||||
|
||||
@return
|
||||
Returns <TRUE/> if the given state is a memeber of this object's
|
||||
Returns <TRUE/> if the given state is a member of this object's
|
||||
state set and <FALSE/> otherwise.
|
||||
*/
|
||||
sal_Bool SAL_CALL AccessibleStateSetHelper::contains (sal_Int16 aState)
|
||||
|
@ -493,7 +493,7 @@ void SvtModuleOptions_Impl::Commit()
|
||||
@descr These methods implement easy access to our internal values.
|
||||
You give us right enum value to specify which module interest you ... we return right information.
|
||||
|
||||
@attention Some poeple use any value as enum ... but we support in header specified values only!
|
||||
@attention Some people use any value as enum ... but we support in header specified values only!
|
||||
We use it directly as index in our internal list. If enum value isn't right - we crash with an
|
||||
"index out of range"!!! Please use me right - otherwise there is no guarantee.
|
||||
|
||||
|
@ -121,7 +121,7 @@ void FilterDialog::ChangeFilters( const FilterNameList* pFilterNames )
|
||||
@descr We show the dialog and if user finish it with "OK" - we try to find selected item in internal saved
|
||||
name list (which you must set in "ChangeFilters()"!). If we return sal_True as result, you can use out
|
||||
parameter "pSelectedItem" as pointer into your FilterNameList to get selected item realy ...
|
||||
but if we return sal_False ... user hsa cancel the dialog ... you shouldnt do that. pSelectedItem isnt
|
||||
but if we return sal_False ... user has cancel the dialog ... you shouldnt do that. pSelectedItem isnt
|
||||
set to any valid value then. We don't change them ...
|
||||
|
||||
@seealso method ChangeFilters()
|
||||
|
@ -1148,7 +1148,7 @@ enum cmapType {
|
||||
#define MISSING_GLYPH_INDEX 0
|
||||
|
||||
/*
|
||||
* getGlyph[0246]() functions and freinds are implemented by:
|
||||
* getGlyph[0246]() functions and friends are implemented by:
|
||||
* @author Manpreet Singh
|
||||
* getGlyph12() function and friends by:
|
||||
* @author HDU
|
||||
|
@ -212,12 +212,12 @@ public abstract class DataAware {
|
||||
/**
|
||||
* Value objects read and write a value from and
|
||||
* to an object. Typically using reflection and JavaBeans properties
|
||||
* or directly using memeber reflection API.
|
||||
* or directly using member reflection API.
|
||||
* DataAware delegates the handling of the DataObject
|
||||
* to a Value object.
|
||||
* 2 implementations currently exist: PropertyValue,
|
||||
* using JavaBeans properties reflection, and DataAwareFields classes
|
||||
* which implement different memeber types.
|
||||
* which implement different member types.
|
||||
*/
|
||||
public interface Value {
|
||||
/**
|
||||
|
@ -51,7 +51,7 @@ import com.sun.star.wizards.ui.ImageList.Counter;
|
||||
* so dialogs which do not need those, should set the corresponding
|
||||
* members showDeselectButton and/or showOtherButton to false.
|
||||
* <br/>
|
||||
* the consturctor should recieve, among others, an Array of String resources - see
|
||||
* the consturctor should receive, among others, an Array of String resources - see
|
||||
* constructor documentation for details.
|
||||
*/
|
||||
public abstract class ImageListDialog extends UnoDialog2 implements UIConsts
|
||||
|
@ -45,7 +45,7 @@ to enable choosing images that are not in the list and
|
||||
so dialogs which do not need those, should set the corresponding
|
||||
members showDeselectButton and/or showOtherButton to false.
|
||||
<br/>
|
||||
the consturctor should recieve, among others, an Array of String resources
|
||||
the consturctor should receive, among others, an Array of String resources
|
||||
see constructor documentation for details.
|
||||
|
||||
@author rpiterman
|
||||
|
@ -184,7 +184,7 @@ public abstract class WWD_Startup extends WWD_General
|
||||
boolean __ftp;
|
||||
/**
|
||||
* When the wizard starts, a new document opens.
|
||||
* The backgroundDoc memeber contains the TextDocument
|
||||
* The backgroundDoc member contains the TextDocument
|
||||
* instance used for that purpose.
|
||||
*/
|
||||
protected XFrame myFrame;
|
||||
|
@ -47,7 +47,7 @@ typedef ::std::vector< EventNameValuesPair > EventsVector;
|
||||
/**
|
||||
* Import <script:events> element.
|
||||
*
|
||||
* The import context usually sets the events immediatly at the event
|
||||
* The import context usually sets the events immediately at the event
|
||||
* XNameReplace. If none was given on construction, it operates in
|
||||
* delayed mode: All events are collected and may then be set
|
||||
* with the setEvents() method.
|
||||
|
@ -128,7 +128,7 @@ public:
|
||||
/** @descr Create a handler of the property set of the given
|
||||
object.
|
||||
@param xObject A reference to any of the object's interfaces.
|
||||
not neccessarily XPropertySet or XMultiPropertySet. It
|
||||
not necessarily XPropertySet or XMultiPropertySet. It
|
||||
is casted later to one of the two of them.
|
||||
*/
|
||||
MultiPropertySetHandler (::com::sun::star::uno::Reference<
|
||||
|
@ -1058,9 +1058,9 @@ protected:
|
||||
Reference<beans::XPropertySet>& rPropSet);
|
||||
|
||||
/**
|
||||
* All marks can be created immediatly. Since we don't care about
|
||||
* All marks can be created immediately. Since we don't care about
|
||||
* the element content, ProcessAttribute should set the properties
|
||||
* immediatly.
|
||||
* immediately.
|
||||
*
|
||||
* This method tolerates an empty PropertySet; subclasses however
|
||||
* are not expected to.
|
||||
|
Loading…
x
Reference in New Issue
Block a user