Kaydet (Commit) 26a67002 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Eike Rathke

Fix typos

Only replaced "iff" with "if"

Change-Id: Ib9dfa5c12b05500043147fe3b65f923b1b12a581
Reviewed-on: https://gerrit.libreoffice.org/37782Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
üst 700e262a
......@@ -252,7 +252,7 @@ classify_argument( typelib_TypeDescriptionReference *pTypeRef, enum x86_64_reg_c
}
/* Examine the argument and return set number of register required in each
class. Return 0 iff parameter should be passed in memory. */
class. Return 0 if parameter should be passed in memory. */
bool x86_64::examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ()
{
enum x86_64_reg_class classes[MAX_CLASSES];
......
......@@ -40,7 +40,7 @@ const sal_uInt32 MAX_SSE_REGS = 8;
Examine the argument and return set number of register required in each
class.
Return false iff parameter should be passed in memory.
Return false if parameter should be passed in memory.
*/
bool examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ();
......
......@@ -252,7 +252,7 @@ classify_argument( typelib_TypeDescriptionReference *pTypeRef, enum x86_64_reg_c
}
/* Examine the argument and return set number of register required in each
class. Return 0 iff parameter should be passed in memory. */
class. Return 0 if parameter should be passed in memory. */
bool x86_64::examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ()
{
enum x86_64_reg_class classes[MAX_CLASSES];
......
......@@ -40,7 +40,7 @@ const sal_uInt32 MAX_SSE_REGS = 8;
Examine the argument and return set number of register required in each
class.
Return false iff parameter should be passed in memory.
Return false if parameter should be passed in memory.
*/
bool examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ();
......
......@@ -122,7 +122,7 @@ namespace dxcanvas
// indicates whether the associated surface needs
// to refresh its contents or not. in other words,
// this flag is set iff both representations are
// this flag is set if both representations are
// out of sync.
mutable bool mbIsSurfaceDirty;
......
......@@ -1182,7 +1182,7 @@ libo_FUZZ_ARG_ENABLE(runtime-optimizations,
AS_HELP_STRING([--disable-runtime-optimizations],
[Statically disable certain runtime optimizations (like rtl/alloc.h or
JVM JIT) that are known to interact badly with certain dynamic analysis
tools (like -fsanitize=address or Valgrind). By default, disabled iff
tools (like -fsanitize=address or Valgrind). By default, disabled if
CC contains "-fsanitize=*". (For Valgrind, those runtime optimizations
are typically disabled dynamically via RUNNING_ON_VALGRIND.)]))
......
......@@ -119,7 +119,7 @@ namespace cppu_threadpool {
bool ORequestThread::launch()
{
// Assumption is that osl::Thread::create returns normally with a true
// return value iff it causes osl::Thread::run to start executing:
// return value if it causes osl::Thread::run to start executing:
acquire();
ThreadAdmin & rThreadAdmin = m_aThreadPool->getThreadAdmin();
osl::ClearableMutexGuard g(rThreadAdmin.m_mutex);
......
......@@ -64,7 +64,7 @@ namespace desktop {
typedef bool (* fpExecWarning)( Lockfile * that );
// checks the lockfile, asks user when lockfile is
// found (iff gui) and returns false when we may not continue
// found (if gui) and returns false when we may not continue
bool check( fpExecWarning execWarning );
// removes the lockfile
......
......@@ -208,7 +208,7 @@ namespace canvas
This method recomputes the maCurrClipBounds and
mbIsCurrClipRectangle members from the current clip and
transformation. IFF the clip changed from rectangular to
transformation. If the clip changed from rectangular to
rectangular again, this method issues a sequence of
optimized SpriteSurface::updateSprite() calls.
......@@ -258,22 +258,22 @@ namespace canvas
*/
mutable bool mbIsContentFullyOpaque;
/// True, iff mfAlpha has changed
/// True, if mfAlpha has changed
mutable bool mbAlphaDirty;
/// True, iff maPosition has changed
/// True, if maPosition has changed
mutable bool mbPositionDirty;
/// True, iff maTransform has changed
/// True, if maTransform has changed
mutable bool mbTransformDirty;
/// True, iff mxClipPoly has changed
/// True, if mxClipPoly has changed
mutable bool mbClipDirty;
/// True, iff mnPriority has changed
/// True, if mnPriority has changed
mutable bool mbPrioDirty;
/// True, iff mbActive has changed
/// True, if mbActive has changed
mutable bool mbVisibilityDirty;
};
}
......
......@@ -71,10 +71,10 @@ private:
exception com.sun.star.uno.RuntimeException and its subtypes are pruned
completely from the hierarchy. Each node of the hierarchy is represented by
an instance of ExceptionTreeNode, where name gives the name of the UNO
exception type, present is true iff the given exception type is a member of
exception type, present is true if the given exception type is a member of
the set S, and children contains all the relevant direct subtypes of the
given exception type, in no particular order (for nodes other than the root
node it holds that children is non-empty iff present is false).
node it holds that children is non-empty if present is false).
*/
class ExceptionTree {
public:
......
......@@ -52,7 +52,7 @@ public:
@param type a UNO type registry name
@return true iff the given type has already been generated
@return true if the given type has already been generated
*/
bool contains(OString const & type) const
{ return m_set.find(type) != m_set.end(); }
......
......@@ -341,7 +341,7 @@ template<> inline Any toAny(Any const & value);
@param value a non-null pointer, receiving the extracted value if
extraction succeeded (and left unmodified otherwise)
@return true iff extraction succeeded
@return true if extraction succeeded
@since LibreOffice 5.3
*/
......
......@@ -27,7 +27,7 @@
namespace comphelper {
// Return true iff url is an absolute URL of "file" scheme:
// Return true if url is an absolute URL of "file" scheme:
COMPHELPER_DLLPUBLIC bool isFileUrl(OUString const & url);
}
......
......@@ -51,7 +51,7 @@ namespace comphelper
/** allow adding property with empty string as name
(by default, such names are rejected with IllegalActionException).
@param i_isAllowed
iff true, empty property name will be allowed
if true, empty property name will be allowed
*/
void setAllowEmptyPropertyName(bool i_isAllowed);
......
......@@ -33,7 +33,7 @@ namespace cppu {
@param name the service name to test
@return true iff the sequence returned by the given implementation's
@return true if the sequence returned by the given implementation's
getSupportedServices method contains the given name
@since LibreOffice 4.0
......
......@@ -294,7 +294,7 @@ JVMFWK_DLLPUBLIC bool jfw_areEqualJavaInfo(
that the changed setting may not be effective immediately.</p>
@return
true iff a VM is running.
true if a VM is running.
*/
JVMFWK_DLLPUBLIC bool jfw_isVMRunning();
......
......@@ -101,7 +101,7 @@ template<typename T> inline boost::optional<T const> tryGetConverted(
">>=" are considered.
The returned object is a proxy. Proxies can be either positive or negative.
Each proxy can be contextually converted to bool, yielding true iff the
Each proxy can be contextually converted to bool, yielding true if the
proxy is positive. For a positive proxy P representing a value of requested
type T, for any T other than void, the expression *P yields that value of
type T. (Technically, the proxy is either a plain pointer or a
......
......@@ -298,7 +298,7 @@ struct IsReference
/**
* IsArithmetic determines whether a type is arithmetic. A type is arithmetic
* iff it is an integral type or a floating point type.
* if it is an integral type or a floating point type.
*
* mozilla::IsArithmetic<int>::value is true;
* mozilla::IsArithmetic<double>::value is true;
......@@ -384,7 +384,7 @@ struct IsEmptyHelper
/**
* IsEmpty determines whether a type is a class (but not a union) that is empty.
*
* A class is empty iff it and all its base classes have no non-static data
* A class is empty if it and all its base classes have no non-static data
* members (except bit-fields of length 0) and no virtual member functions, and
* no base class is empty or a virtual base class.
*
......
......@@ -99,7 +99,7 @@ public:
/**
Returns whether this type reader is valid.
@return true iff this type reader is valid
@return true if this type reader is valid
*/
bool isValid() const {
return m_handle != nullptr;
......
......@@ -51,7 +51,7 @@
not be null; if the given binary blob is malformed, or of a version larger
than <code>maxVersion</code>, null is returned
@return false iff an out-of-memory condition occurred, in which case
@return false if an out-of-memory condition occurred, in which case
<code>result</code> is left unchanged, and no type reader is created
@since UDK 3.2.0
......@@ -296,7 +296,7 @@ REG_DLLPUBLIC void SAL_CALL typereg_reader_getFieldTypeName(
@param value an out-parameter obtaining the field value's value; must not be
null
@return false iff an out-of-memory condition occurred, in which case
@return false if an out-of-memory condition occurred, in which case
<code>type</code> and <code>value</code> are left unchanged
@since UDK 3.2.0
......
......@@ -89,7 +89,7 @@ REG_DLLPUBLIC void SAL_CALL typereg_writer_destroy(void * handle) SAL_THROW_EXTE
@param typeName the super type name; must not be null
@return false iff an out-of-memory condition occurred, in which case the type
@return false if an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
......@@ -119,7 +119,7 @@ REG_DLLPUBLIC sal_Bool SAL_CALL typereg_writer_setSuperTypeName(
@param valueValue the value of the value of the field
@return false iff an out-of-memory condition occurred, in which case the type
@return false if an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
......@@ -150,7 +150,7 @@ REG_DLLPUBLIC sal_Bool SAL_CALL typereg_writer_setFieldData(
@param exceptionCount the number of exceptions of the method
@return false iff an out-of-memory condition occurred, in which case the type
@return false if an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
......@@ -179,7 +179,7 @@ REG_DLLPUBLIC sal_Bool SAL_CALL typereg_writer_setMethodData(
@param typeName the type name of the parameter; must not be null
@return false iff an out-of-memory condition occurred, in which case the type
@return false if an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
......@@ -202,7 +202,7 @@ REG_DLLPUBLIC sal_Bool SAL_CALL typereg_writer_setMethodParameterData(
@param typeName the exception type name; must not be null
@return false iff an out-of-memory condition occurred, in which case the type
@return false if an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
......@@ -228,7 +228,7 @@ REG_DLLPUBLIC sal_Bool SAL_CALL typereg_writer_setMethodExceptionTypeName(
@param typeName the type name of the reference; must not be null
@return false iff an out-of-memory condition occurred, in which case the type
@return false if an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
......
......@@ -31,7 +31,7 @@ struct _typelib_TypeDescription;
struct _uno_Interface;
/** Function pointer declaration for the binary C uno dispatch function. Any pure out or return
value will be constructed by the callee, iff no exception is signalled.
value will be constructed by the callee, if no exception is signalled.
If an exception is signalled, the any *ppException is properly constructed by the callee,
otherwise the pointer *ppException is set to 0.
An attribute get call is indicated by a non-null return pointer.
......
......@@ -43,7 +43,7 @@ UNOTOOLS_DLLPUBLIC bool IsDocument(OUString const & url);
UNOTOOLS_DLLPUBLIC bool IsFolder(OUString const & url);
/// @param title must not be null
/// @return true iff title has been set (i.e., if obtaining the "Title" property
/// @return true if title has been set (i.e., if obtaining the "Title" property
/// of the given content yields a non-void value without raising a
/// non-RuntimeException; RuntimeExceptions are passed through)
UNOTOOLS_DLLPUBLIC bool GetTitle(
......
......@@ -376,7 +376,7 @@ public class java_remote_bridge
String[] oid = new String[1];
object = _java_environment.registerInterface(object, oid, type);
if (!proxyFactory.isProxy(object)) {
// This branch must be taken iff object either is no proxy at
// This branch must be taken if object either is no proxy at
// all or a proxy from some other bridge. There are objects
// that behave like objects for this bridge but that are not
// detected as such by proxyFactory.isProxy. The only known
......
......@@ -66,7 +66,7 @@ final class Cache {
first = e;
}
} else {
// Reached iff maxSize == 0:
// Reached if maxSize == 0:
return NOT_CACHED;
}
map.put(content, e);
......
......@@ -1578,7 +1578,7 @@ uno::Sequence< lang::Locale > SAL_CALL
static bool IsEqSvcList( const uno::Sequence< OUString > &rList1,
const uno::Sequence< OUString > &rList2 )
{
// returns true iff both sequences are equal
// returns true if both sequences are equal
bool bRes = false;
sal_Int32 nLen = rList1.getLength();
......
......@@ -56,7 +56,7 @@ struct FileHandle_Impl
*/
enum StateBits
{
STATE_SEEKABLE = 1, /* open() sets, iff regular file */
STATE_SEEKABLE = 1, /* open() sets, if regular file */
STATE_READABLE = 2, /* open() sets, read() requires */
STATE_WRITEABLE = 4, /* open() sets, write() requires */
STATE_MODIFIED = 8 /* write() sets, flush() resets */
......
......@@ -20,7 +20,7 @@ salhelper::Thread::Thread(char const * name): name_(name) {}
void salhelper::Thread::launch() {
SAL_INFO("salhelper.thread", "launch " << name_);
// Assumption is that osl::Thread::create returns normally with a true
// return value iff it causes osl::Thread::run to start executing:
// return value if it causes osl::Thread::run to start executing:
acquire();
try {
if (!create()) {
......
......@@ -256,7 +256,7 @@ public:
ScDBData* findByIndex(sal_uInt16 nIndex);
ScDBData* findByUpperName(const OUString& rName);
iterator findByUpperName2(const OUString& rName);
// Takes ownership of p iff it returns true:
// Takes ownership of p if it returns true:
SAL_WARN_UNUSED_RESULT bool insert(ScDBData* p);
void erase(const iterator& itr);
bool empty() const;
......
......@@ -317,7 +317,7 @@ SvXMLImportContext *ScXMLFlatDocContext_Impl::CreateChildContext(
sal_uInt16 i_nPrefix, const OUString& i_rLocalName,
const uno::Reference<xml::sax::XAttributeList>& i_xAttrList)
{
// behave like meta base class iff we encounter office:meta
// behave like meta base class if we encounter office:meta
const SvXMLTokenMap& rTokenMap = GetScImport().GetDocElemTokenMap();
if ( XML_TOK_DOC_META == rTokenMap.Get( i_nPrefix, i_rLocalName ) ) {
return SvXMLMetaDocumentContext::CreateChildContext(
......
......@@ -565,7 +565,7 @@ double GetYearFrac( sal_Int32 nNullDate, sal_Int32 nStartDate, sal_Int32 nEndDat
// is to be understood as "inclusive the lower bound, exclusive in upper bound".
assert(nYear1 == nYear2 || nYear1 + 1 == nYear2);
// as a consequence, nYearDifferent iff nYear2 == nYear + 1, and
// as a consequence, nYearDifferent if nYear2 == nYear + 1, and
// there are only two possible 29 Februaries to consider:
// "29 February nYear1" and "29 February nYear2"
......
......@@ -888,7 +888,7 @@ double prob_hit(double S, double vol, double mu,
}
// probability of being in-the-money, ie payoff is greater zero,
// assuming payoff(S_T) > 0 iff S_T in [B1, B2]
// assuming payoff(S_T) > 0 if S_T in [B1, B2]
// this the same as the price of a cash or nothing option
// with no discounting
double prob_in_money(double S, double vol, double mu,
......
......@@ -130,7 +130,7 @@ double prob_hit(double S, double vol, double mu,
// probability of being in-the-money, ie payoff is greater zero,
// assuming payoff(S_T) > 0 iff S_T in [B1, B2]
// assuming payoff(S_T) > 0 if S_T in [B1, B2]
double prob_in_money(double S, double vol, double mu,
double tau, double B1, double B2);
double prob_in_money(double S, double vol, double mu,
......
......@@ -438,7 +438,7 @@ mkException( OUString const & i_rMessage,
<li>ignore the error and continue</li>
<li>retry the action that led to the error</li></ul></p>
N.B.: must not be called before DMA is fully initialized!
@returns true iff caller should retry
@returns true if caller should retry
*/
static bool
handleError( ucb::InteractiveAugmentedIOException const & i_rException,
......
......@@ -168,7 +168,7 @@ public:
</p>
@returns
true iff the element has successfully been registered
true if the element has successfully been registered
*/
virtual bool TryRegisterMetadatable(Metadatable& i_xObject,
OUString const& i_rStreamName, OUString const& i_rIdref)
......@@ -222,7 +222,7 @@ public:
virtual void RemoveXmlIdForElement(Metadatable const&) override;
/** register i_rCopy as a copy of i_rSource,
with precedence iff i_bCopyPrecedesSource is true */
with precedence if i_bCopyPrecedesSource is true */
void RegisterCopy(Metadatable const& i_rSource, Metadatable & i_rCopy,
const bool i_bCopyPrecedesSource);
......
......@@ -278,10 +278,10 @@ protected:
const css::uno::Sequence<css::beans::PropertyValue> & i_rMedium) const;
/// get text of standard meta data element
OUString SAL_CALL getMetaText(const char* i_name) const;
/// set text of standard meta data element iff not equal to existing text
/// set text of standard meta data element if not equal to existing text
bool SAL_CALL setMetaText(const char* i_name,
const OUString & i_rValue);
/// set text of standard meta data element iff not equal to existing text
/// set text of standard meta data element if not equal to existing text
void SAL_CALL setMetaTextAndNotify(const char* i_name,
const OUString & i_rValue);
/// get text of standard meta data element's attribute
......@@ -927,7 +927,7 @@ propsToStrings(css::uno::Reference<css::beans::XPropertySet> const & i_xPropSet)
return std::make_pair(comphelper::containerToSequence(values), attrs);
}
// remove the given element from the DOM, and iff i_pAttrs != 0 insert new one
// remove the given element from the DOM, and if i_pAttrs != 0 insert new one
void SAL_CALL
SfxDocumentMetaData::updateElement(const char *i_name,
std::vector<std::pair<const char *, OUString> >* i_pAttrs)
......
......@@ -1322,7 +1322,7 @@ void SfxObjectShell::ImplSign( bool bScriptingContent )
// Please fix this comment if you can: Note that the talk about "ODF version" around here is a
// bit silly, as there should be nothing ODF-specific in this code, right? What we mean, I
// think, is "ODF version iff it is ODF that is the format the document is being stored as", and
// think, is "ODF version if it is ODF that is the format the document is being stored as", and
// otherwise the "ODF version" is ignored. Not sure why such format-specific things needs to be
// handled here. Digital signatures then complicate matters further, as it's only ODF 1.2 and
// OOXML that have digital signatures.
......
......@@ -25,7 +25,7 @@ namespace sfx2 {
/// given handleSystemShellExecuteException is false (in which case the
/// exception is re-thrown).
///
/// @return true iff execution was successful
/// @return true if execution was successful
bool openUriExternally(
OUString const & uri, bool handleSystemShellExecuteException);
......
......@@ -626,7 +626,7 @@ void BaseNode::notifyEndListeners() const
// notify state change
maContext.mrEventMultiplexer.notifyAnimationEnd( mpSelf );
// notify main sequence end (iff we're the main
// notify main sequence end (if we're the main
// sequence root node). This is because the main
// sequence determines the active duration of the
// slide. All other sequences are secondary, in that
......
......@@ -29,11 +29,11 @@ namespace basegfx{ class B1DRange; class B2DRange; class B2DVector; }
class TestView : public slideshow::internal::UnoView
{
public:
/// true iff clear() has been called
/// true if clear() has been called
virtual bool isClearCalled() const = 0;
virtual std::vector<std::pair<basegfx::B2DVector,double> > getCreatedSprites() const = 0;
virtual basegfx::B1DRange getPriority() const = 0;
/// true iff setClip was called (on and off)
/// true if setClip was called (on and off)
virtual bool wasClipSet() const = 0;
virtual basegfx::B2DRange getBounds() const = 0;
......
......@@ -1605,7 +1605,7 @@ sub collect_directories_from_filesarray
{
# Adding the modules to the module list!
$alldirectoryhash{$destinationpath}->{'modules'} .= "," . $onefile->{'modules'};
# Save file's gid iff this directory appears in only a single
# Save file's gid if this directory appears in only a single
# file's FILELIST (so that unused directories will be filtered
# out in remove_not_required_spellcheckerlanguage_files, based
# on gid):
......
......@@ -463,7 +463,7 @@ endef
# establish the dependency that actually causes inclusion of the compiled help
# into the .oxt, for one language; in principle, this would only need to be done
# once per language iff the extension uses any help -- currently it is done from
# once per language if the extension uses any help -- currently it is done from
# each individual gb_Extension_add_helpfile call (and thus requires $strip
# to remove duplicates from FILES)
# $(1): extension identifier
......
......@@ -801,7 +801,7 @@ void SmEditWindow::SelPrevMark()
}
bool SmEditWindow::HasMark(const OUString& rText)
// returns true iff 'rText' contains a mark
// returns true if 'rText' contains a mark
{
return rText.indexOf("<?>") != -1;
}
......
......@@ -1982,7 +1982,7 @@ SvXMLImportContext *SmXMLFlatDocContext_Impl::CreateChildContext(
sal_uInt16 i_nPrefix, const OUString& i_rLocalName,
const uno::Reference<xml::sax::XAttributeList>& i_xAttrList)
{
// behave like meta base class iff we encounter office:meta
// behave like meta base class if we encounter office:meta
if ( XML_NAMESPACE_OFFICE == i_nPrefix &&
i_rLocalName == GetXMLToken(XML_META) )
{
......
......@@ -897,7 +897,7 @@ double Det(const Point &rHeading1, const Point &rHeading2)
}
/// Is true iff the point 'rPoint1' belongs to the straight line through 'rPoint2'
/// Is true if the point 'rPoint1' belongs to the straight line through 'rPoint2'
/// and has the direction vector 'rHeading2'
bool IsPointInLine(const Point &rPoint1,
const Point &rPoint2, const Point &rHeading2)
......
......@@ -308,7 +308,7 @@ const SmTokenTableEntry * SmParser::GetTokenTableEntry( const OUString &rName )
namespace {
bool IsDelimiter( const OUString &rTxt, sal_Int32 nPos )
// returns 'true' iff cChar is '\0' or a delimiter
// returns 'true' if cChar is '\0' or a delimiter
{
assert(nPos <= rTxt.getLength()); //index out of range
......
......@@ -112,7 +112,7 @@ bool SmGetGlyphBoundRect(const vcl::RenderContext &rDev,
}
bool SmIsMathAlpha(const OUString &rText)
// true iff symbol (from StarMath Font) should be treated as letter
// true if symbol (from StarMath Font) should be treated as letter
{
// Set of symbols, which should be treated as letters in StarMath Font
// (to get a normal (non-clipped) SmRect in contrast to the other operators
......@@ -554,7 +554,7 @@ SmRect & SmRect::ExtendBy(const SmRect &rRect, RectCopyMBL eCopyMode,
long SmRect::OrientedDist(const Point &rPoint) const
// return oriented distance of rPoint to the current rectangle,
// especially the return value is <= 0 iff the point is inside the
// especially the return value is <= 0 if the point is inside the
// rectangle.
// For simplicity the maximum-norm is used.
{
......
......@@ -597,7 +597,7 @@ PermissionCollection AccessController::getEffectivePermissions(
}
// call on policy
// iff this is a recurring call for the default user, then grant all permissions
// if this is a recurring call for the default user, then grant all permissions
t_rec_vec * rec = static_cast< t_rec_vec * >( m_rec.getData() );
if (rec) // tls entry exists => this is recursive call
{
......
......@@ -172,14 +172,14 @@ public:
SwRegHistory* GetHistory() const { return m_pHistory; }
/// try to insert the hint
/// @return true iff hint successfully inserted
/// @return true if hint successfully inserted
bool TryInsertHint( SwTextAttr * const pHint, SwTextNode & rNode,
const SetAttrMode nMode = SetAttrMode::DEFAULT );
bool HasFootnote() const { return m_bFootnote; }
bool IsInSplitNode() const { return m_bInSplitNode; }
/// calc current value of m_bHasHiddenParaField, returns true iff changed
/// calc current value of m_bHasHiddenParaField, returns true if changed
bool CalcHiddenParaField();
DECL_FIXEDMEMPOOL_NEWDEL(SwpHints)
......
......@@ -282,7 +282,7 @@ public:
/// initialize the hints after file loading (which takes shortcuts)
void FileLoadedInitHints();
/// Insert pAttr into hints array. @return true iff inserted successfully
/// Insert pAttr into hints array. @return true if inserted successfully
bool InsertHint( SwTextAttr * const pAttr,
const SetAttrMode nMode = SetAttrMode::DEFAULT );
/// create new text attribute from rAttr and insert it
......
......@@ -94,7 +94,7 @@ class SW_DLLPUBLIC SwNode
#endif
/// all SwFrameFormat that are anchored at the node
/// invariant: SwFrameFormat is in the list iff
/// invariant: SwFrameFormat is in the list if
/// SwFrameFormat::GetAnchor().GetContentAnchor() points to this node
std::unique_ptr<std::vector<SwFrameFormat*>> m_pAnchoredFlys;
......
......@@ -34,7 +34,7 @@ class SwUndoInsSection : public SwUndo, private SwUndRng
{
private:
const std::unique_ptr<SwSectionData> m_pSectionData;
const std::unique_ptr<SwTOXBase> m_pTOXBase; /// set iff section is TOX
const std::unique_ptr<SwTOXBase> m_pTOXBase; /// set if section is TOX
const std::unique_ptr<SfxItemSet> m_pAttrSet;
std::unique_ptr<SwHistory> m_pHistory;
std::unique_ptr<SwRedlineData> m_pRedlData;
......
......@@ -342,7 +342,7 @@ splitting of exising hints that is necessary for backward compatibility.
@param rNode the text node
@param rHint the hint to be inserted
@returns true iff hint was successfully inserted
@returns true if hint was successfully inserted
*/
bool
SwpHints::TryInsertNesting( SwTextNode & rNode, SwTextAttrNesting & rNewHint )
......
......@@ -279,7 +279,7 @@ class SwUndoDelSection
{
private:
std::unique_ptr<SwSectionData> const m_pSectionData; /// section not TOX
std::unique_ptr<SwTOXBase> const m_pTOXBase; /// set iff section is TOX
std::unique_ptr<SwTOXBase> const m_pTOXBase; /// set if section is TOX
std::unique_ptr<SfxItemSet> const m_pAttrSet;
std::shared_ptr< ::sfx2::MetadatableUndo > const m_pMetadataUndo;
sal_uLong const m_nStartNode;
......
......@@ -523,7 +523,7 @@ public:
SwWW8WrGrf* m_pGrf;
const SwAttrSet* m_pStyAttr; // StyleAttr for Tabs
const SwModify* m_pOutFormatNode; // write Format or Node
const SwFormat *m_pCurrentStyle; // iff bStyDef=true, then this store the current style
const SwFormat *m_pCurrentStyle; // if bStyDef=true, then this store the current style
MainTextPlcDrawObj *m_pSdrObjs; // Draw-/Fly-Objects
HdFtPlcDrawObj *m_pHFSdrObjs; // Draw-/Fly-Objects in header or footer
......
......@@ -5904,7 +5904,7 @@ const wwSprmDispatcher *GetWW8SprmDispatcher()
{0x2A0C, &SwWW8ImplReader::Read_CharHighlight},//"sprmCHighlight"
//chp.fHighlight,
//chp.icoHighlight;ico
//(fHighlight is set to 1 iff
//(fHighlight is set to 1 if
//ico is not 0);byte;
{NS_sprm::LN_CObjLocation, &SwWW8ImplReader::Read_PicLoc}, //"sprmCObjLocation" chp.fcObj;
//FC;long;
......
......@@ -545,7 +545,7 @@ const wwSprmSearcher *wwSprmParser::GetWW8SprmSearcher()
{NS_sprm::LN_CIdCharType, { 0, L_FIX} }, // "sprmCIdCharType" obsolete: not applicable in
// Word97 and later versions;;;
{0x2A0C, { 1, L_FIX} }, // "sprmCHighlight" chp.fHighlight,
// chp.icoHighlight;ico (fHighlight is set to 1 iff
// chp.icoHighlight;ico (fHighlight is set to 1 if
// ico is not 0)
{NS_sprm::LN_CObjLocation, { 4, L_FIX} }, // "sprmCObjLocation" chp.fcObj;FC;long;
{NS_sprm::LN_CFFtcAsciSymb, { 0, L_FIX} }, // "sprmCFFtcAsciSymb" ;;;
......
......@@ -300,7 +300,7 @@ SvXMLImportContext* SwXMLOfficeDocContext_Impl::CreateChildContext(
}
}
// behave like meta base class iff we encounter office:meta
// behave like meta base class if we encounter office:meta
if ( XML_TOK_DOC_META == rTokenMap.Get( nPrefix, rLocalName )