summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basebmp/inc/accessorfunctors.hxx4
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx2
-rw-r--r--bridges/source/cpp_uno/mingw_x86-64/abi.hxx2
-rw-r--r--bridges/test/java_remote/Bug107753_Test.java2
-rw-r--r--canvas/source/directx/dx_surfacebitmap.hxx2
-rw-r--r--configure.ac2
-rw-r--r--cppu/source/threadpool/thread.cxx2
-rw-r--r--desktop/source/deployment/inc/lockfile.hxx2
-rw-r--r--include/canvas/base/canvascustomspritehelper.hxx12
-rw-r--r--include/codemaker/exceptiontree.hxx4
-rw-r--r--include/codemaker/generatedtypeset.hxx2
-rw-r--r--include/comphelper/propertybag.hxx2
-rw-r--r--include/cppuhelper/supportsservice.hxx2
-rw-r--r--include/registry/reader.hxx2
-rw-r--r--include/registry/typereg_reader.hxx4
-rw-r--r--include/registry/writer.h12
-rw-r--r--include/uno/dispatcher.h2
-rw-r--r--include/unotools/ucbhelper.hxx2
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Cache.java2
-rw-r--r--linguistic/source/lngsvcmgr.cxx2
-rw-r--r--sal/osl/w32/file.cxx2
-rw-r--r--salhelper/source/thread.cxx2
-rw-r--r--sc/inc/dbdata.hxx2
-rw-r--r--sc/source/filter/xml/xmlimprt.cxx2
-rw-r--r--scaddins/source/analysis/analysishelper.cxx2
-rw-r--r--scaddins/source/pricing/black_scholes.cxx2
-rw-r--r--scaddins/source/pricing/black_scholes.hxx2
-rw-r--r--sfx2/source/doc/DocumentMetadataAccess.cxx2
-rw-r--r--sfx2/source/doc/Metadatable.cxx4
-rw-r--r--sfx2/source/doc/SfxDocumentMetaData.cxx6
-rw-r--r--sfx2/source/inc/openuriexternally.hxx2
-rw-r--r--slideshow/source/engine/animationnodes/basenode.cxx2
-rw-r--r--slideshow/test/tests.hxx4
-rw-r--r--solenv/gbuild/Extension.mk2
-rw-r--r--starmath/source/edit.cxx2
-rw-r--r--starmath/source/mathmlimport.cxx2
-rw-r--r--starmath/source/node.cxx2
-rw-r--r--starmath/source/parse.cxx2
-rw-r--r--starmath/source/rect.cxx4
-rw-r--r--stoc/source/security/access_controller.cxx2
-rw-r--r--sw/inc/ndhints.hxx4
-rw-r--r--sw/inc/ndtxt.hxx2
-rw-r--r--sw/inc/node.hxx2
-rw-r--r--sw/source/core/inc/UndoSection.hxx2
-rw-r--r--sw/source/core/txtnode/thints.cxx2
-rw-r--r--sw/source/core/undo/unsect.cxx2
-rw-r--r--sw/source/filter/ww8/wrtww8.hxx2
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx2
-rw-r--r--sw/source/filter/ww8/ww8scan.cxx2
-rw-r--r--sw/source/filter/xml/xmlimp.cxx2
-rw-r--r--sw/source/uibase/wrtsh/navmgr.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpdirp.cxx2
-rw-r--r--udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl2
-rw-r--r--unoxml/source/rdf/librdf_repository.cxx2
-rw-r--r--vcl/headless/svpgdi.cxx2
-rw-r--r--vcl/source/app/svapp.cxx2
-rw-r--r--vcl/source/filter/jpeg/transupp.c2
-rw-r--r--vcl/unx/generic/app/i18n_status.cxx2
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx2
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java4
-rw-r--r--xmloff/inc/txtlists.hxx2
-rw-r--r--xmloff/source/chart/contexts.cxx2
-rw-r--r--xmloff/source/draw/sdxmlimp.cxx2
67 files changed, 87 insertions, 87 deletions
diff --git a/basebmp/inc/accessorfunctors.hxx b/basebmp/inc/accessorfunctors.hxx
index 6bf46ea826fb..cae37ba7ad78 100644
--- a/basebmp/inc/accessorfunctors.hxx
+++ b/basebmp/inc/accessorfunctors.hxx
@@ -80,7 +80,7 @@ template< typename T,
{
typedef typename make_unsigned<T>::type unsigned_T;
- // mask will be 0, if m == 0, and 1 otherwise
+ // mask will be 0, iff m == 0, and 1 otherwise
const T mask( unsigned_cast<T>(m | -m) >> (sizeof(unsigned_T)*8 - 1) );
return v1*static_cast<M>(1-mask) + v2*mask;
}
@@ -96,7 +96,7 @@ template< typename T,
{
typedef typename make_unsigned<T>::type unsigned_T;
- // mask will be 0, if m == 0, and 1 otherwise
+ // mask will be 0, iff m == 0, and 1 otherwise
const T mask( unsigned_cast<T>(m | -m) >> (sizeof(unsigned_T)*8 - 1) );
return v1*mask + v2*static_cast<M>(1-mask);
}
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
index e3745ee7b551..36de6daa6f14 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
@@ -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 if parameter should be passed in memory. */
+ class. Return 0 iff 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];
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx
index c8ce2ef82a0b..915d45b2fc54 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx
@@ -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 if parameter should be passed in memory.
+ Return false iff parameter should be passed in memory.
*/
bool examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ();
diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx b/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx
index e3745ee7b551..36de6daa6f14 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx
@@ -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 if parameter should be passed in memory. */
+ class. Return 0 iff 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];
diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx b/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx
index 425fac1f30a5..90aad264c89d 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx
@@ -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 if parameter should be passed in memory.
+ Return false iff parameter should be passed in memory.
*/
bool examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ();
diff --git a/bridges/source/cpp_uno/mingw_x86-64/abi.hxx b/bridges/source/cpp_uno/mingw_x86-64/abi.hxx
index d5715cb737d9..09d2c97c9f2e 100644
--- a/bridges/source/cpp_uno/mingw_x86-64/abi.hxx
+++ b/bridges/source/cpp_uno/mingw_x86-64/abi.hxx
@@ -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 if parameter should be passed in memory.
+ Return false iff parameter should be passed in memory.
*/
bool examine_argument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedSSE ) throw ();
diff --git a/bridges/test/java_remote/Bug107753_Test.java b/bridges/test/java_remote/Bug107753_Test.java
index c83d5f1958f7..34e51126808d 100644
--- a/bridges/test/java_remote/Bug107753_Test.java
+++ b/bridges/test/java_remote/Bug107753_Test.java
@@ -31,7 +31,7 @@ import test.lib.TestBed;
* Test case for bug #107753#.
*
* <p>Bug #107753# "Java UNO: Proxies should implement intuitive semantics of
- * equals and hashCode" requests that two proxies are equal if they represent
+ * equals and hashCode" requests that two proxies are equal iff they represent
* the same UNO object. This implies that if two proxies repsent the same UNO
* object, they must have the same hash code.</p>
*/
diff --git a/canvas/source/directx/dx_surfacebitmap.hxx b/canvas/source/directx/dx_surfacebitmap.hxx
index 7703233785ec..fa3770733ca8 100644
--- a/canvas/source/directx/dx_surfacebitmap.hxx
+++ b/canvas/source/directx/dx_surfacebitmap.hxx
@@ -125,7 +125,7 @@ namespace dxcanvas
// indicates whether the associated surface needs
// to refresh its contents or not. in other words,
- // this flag is set if both representations are
+ // this flag is set iff both representations are
// out of sync.
mutable bool mbIsSurfaceDirty;
diff --git a/configure.ac b/configure.ac
index 7103f9c990ce..d3c6e614389d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1069,7 +1069,7 @@ AC_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 if
+ tools (like -fsanitize=address or Valgrind). By default, disabled iff
CC contains "-fsanitize=*". (For Valgrind, those runtime optimizations
are typically disabled dynamically via RUNNING_ON_VALGRIND.)]))
diff --git a/cppu/source/threadpool/thread.cxx b/cppu/source/threadpool/thread.cxx
index ff4bbfd68551..d1d448f42906 100644
--- a/cppu/source/threadpool/thread.cxx
+++ b/cppu/source/threadpool/thread.cxx
@@ -118,7 +118,7 @@ namespace cppu_threadpool {
bool ORequestThread::launch()
{
// Assumption is that osl::Thread::create returns normally with a true
- // return value if it causes osl::Thread::run to start executing:
+ // return value iff it causes osl::Thread::run to start executing:
acquire();
ThreadAdmin & rThreadAdmin = m_aThreadPool->getThreadAdmin();
osl::ClearableMutexGuard g(rThreadAdmin.m_mutex);
diff --git a/desktop/source/deployment/inc/lockfile.hxx b/desktop/source/deployment/inc/lockfile.hxx
index cb7aae83ec83..f3f1da28d07a 100644
--- a/desktop/source/deployment/inc/lockfile.hxx
+++ b/desktop/source/deployment/inc/lockfile.hxx
@@ -64,7 +64,7 @@ namespace desktop {
typedef bool (* fpExecWarning)( Lockfile * that );
// checks the lockfile, asks user when lockfile is
- // found (if gui) and returns false when we may not continue
+ // found (iff gui) and returns false when we may not continue
bool check( fpExecWarning execWarning );
// removes the lockfile
diff --git a/include/canvas/base/canvascustomspritehelper.hxx b/include/canvas/base/canvascustomspritehelper.hxx
index 760bf4ec4d09..b77144d8a50c 100644
--- a/include/canvas/base/canvascustomspritehelper.hxx
+++ b/include/canvas/base/canvascustomspritehelper.hxx
@@ -262,22 +262,22 @@ namespace canvas
*/
mutable bool mbIsContentFullyOpaque;
- /// True, if mfAlpha has changed
+ /// True, iff mfAlpha has changed
mutable bool mbAlphaDirty;
- /// True, if maPosition has changed
+ /// True, iff maPosition has changed
mutable bool mbPositionDirty;
- /// True, if maTransform has changed
+ /// True, iff maTransform has changed
mutable bool mbTransformDirty;
- /// True, if mxClipPoly has changed
+ /// True, iff mxClipPoly has changed
mutable bool mbClipDirty;
- /// True, if mnPriority has changed
+ /// True, iff mnPriority has changed
mutable bool mbPrioDirty;
- /// True, if mbActive has changed
+ /// True, iff mbActive has changed
mutable bool mbVisibilityDirty;
};
}
diff --git a/include/codemaker/exceptiontree.hxx b/include/codemaker/exceptiontree.hxx
index b97286c29784..091ff034bf72 100644
--- a/include/codemaker/exceptiontree.hxx
+++ b/include/codemaker/exceptiontree.hxx
@@ -70,10 +70,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 if the given exception type is a member of
+ exception type, present is true iff 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 if present is false).
+ node it holds that children is non-empty iff present is false).
*/
class ExceptionTree {
public:
diff --git a/include/codemaker/generatedtypeset.hxx b/include/codemaker/generatedtypeset.hxx
index 1a08e89618be..ca4ad24c68be 100644
--- a/include/codemaker/generatedtypeset.hxx
+++ b/include/codemaker/generatedtypeset.hxx
@@ -54,7 +54,7 @@ public:
@param type a UNO type registry name
- @return true if the given type has already been generated
+ @return true iff the given type has already been generated
*/
bool contains(OString const & type) const
{ return m_set.find(type) != m_set.end(); }
diff --git a/include/comphelper/propertybag.hxx b/include/comphelper/propertybag.hxx
index 1c72940c27c5..484246a11d17 100644
--- a/include/comphelper/propertybag.hxx
+++ b/include/comphelper/propertybag.hxx
@@ -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
- if true, empty property name will be allowed
+ iff true, empty property name will be allowed
*/
void setAllowEmptyPropertyName(bool i_isAllowed = true);
diff --git a/include/cppuhelper/supportsservice.hxx b/include/cppuhelper/supportsservice.hxx
index d1aa6eba2f37..10dcfb553b38 100644
--- a/include/cppuhelper/supportsservice.hxx
+++ b/include/cppuhelper/supportsservice.hxx
@@ -33,7 +33,7 @@ namespace cppu {
@param name the service name to test
- @return true if the sequence returned by the given implementation's
+ @return true iff the sequence returned by the given implementation's
getSupportedServices method contains the given name
@since LibreOffice 4.0
diff --git a/include/registry/reader.hxx b/include/registry/reader.hxx
index d877f382bb5b..67888df4f6f9 100644
--- a/include/registry/reader.hxx
+++ b/include/registry/reader.hxx
@@ -116,7 +116,7 @@ public:
/**
Returns whether this type reader is valid.
- @return true if this type reader is valid
+ @return true iff this type reader is valid
*/
bool isValid() const {
return m_handle != 0;
diff --git a/include/registry/typereg_reader.hxx b/include/registry/typereg_reader.hxx
index 440e2c91e601..64c2261f4e0e 100644
--- a/include/registry/typereg_reader.hxx
+++ b/include/registry/typereg_reader.hxx
@@ -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 if an out-of-memory condition occurred, in which case
+ @return false iff 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 if an out-of-memory condition occurred, in which case
+ @return false iff an out-of-memory condition occurred, in which case
<code>type</code> and <code>value</code> are left unchanged
@since UDK 3.2.0
diff --git a/include/registry/writer.h b/include/registry/writer.h
index a0c458afaff4..e05b09634ede 100644
--- a/include/registry/writer.h
+++ b/include/registry/writer.h
@@ -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 if an out-of-memory condition occurred, in which case the type
+ @return false iff 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 if an out-of-memory condition occurred, in which case the type
+ @return false iff 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 if an out-of-memory condition occurred, in which case the type
+ @return false iff 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 if an out-of-memory condition occurred, in which case the type
+ @return false iff 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 if an out-of-memory condition occurred, in which case the type
+ @return false iff 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 if an out-of-memory condition occurred, in which case the type
+ @return false iff an out-of-memory condition occurred, in which case the type
writer is not modified
@since UDK 3.2.0
diff --git a/include/uno/dispatcher.h b/include/uno/dispatcher.h
index c324641c6291..d4bde04d077e 100644
--- a/include/uno/dispatcher.h
+++ b/include/uno/dispatcher.h
@@ -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, if no exception is signalled.
+ value will be constructed by the callee, iff 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.
diff --git a/include/unotools/ucbhelper.hxx b/include/unotools/ucbhelper.hxx
index 027c63854414..6234e8e58bb6 100644
--- a/include/unotools/ucbhelper.hxx
+++ b/include/unotools/ucbhelper.hxx
@@ -44,7 +44,7 @@ UNOTOOLS_DLLPUBLIC bool IsDocument(OUString const & url);
UNOTOOLS_DLLPUBLIC bool IsFolder(OUString const & url);
/// @param title must not be null
-/// @return true if title has been set (i.e., if obtaining the "Title" property
+/// @return true iff 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(
diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
index eeb6641ae4ff..1a48b53c17ec 100644
--- a/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
+++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
@@ -374,7 +374,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 if object either is no proxy at
+ // This branch must be taken iff 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
diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java b/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java
index aef3e1915184..544a06406648 100644
--- a/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java
+++ b/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java
@@ -65,7 +65,7 @@ final class Cache {
first = e;
}
} else {
- // Reached if maxSize == 0:
+ // Reached iff maxSize == 0:
return NOT_CACHED;
}
map.put(content, e);
diff --git a/linguistic/source/lngsvcmgr.cxx b/linguistic/source/lngsvcmgr.cxx
index 1da94b133ee7..1ea8c073b0da 100644
--- a/linguistic/source/lngsvcmgr.cxx
+++ b/linguistic/source/lngsvcmgr.cxx
@@ -1653,7 +1653,7 @@ uno::Sequence< lang::Locale > SAL_CALL
static bool IsEqSvcList( const uno::Sequence< OUString > &rList1,
const uno::Sequence< OUString > &rList2 )
{
- // returns sal_True if both sequences are equal
+ // returns sal_True iff both sequences are equal
bool bRes = false;
sal_Int32 nLen = rList1.getLength();
diff --git a/sal/osl/w32/file.cxx b/sal/osl/w32/file.cxx
index da1b3c06501e..181e041c29bd 100644
--- a/sal/osl/w32/file.cxx
+++ b/sal/osl/w32/file.cxx
@@ -60,7 +60,7 @@ struct FileHandle_Impl
*/
enum StateBits
{
- STATE_SEEKABLE = 1, /* open() sets, if regular file */
+ STATE_SEEKABLE = 1, /* open() sets, iff regular file */
STATE_READABLE = 2, /* open() sets, read() requires */
STATE_WRITEABLE = 4, /* open() sets, write() requires */
STATE_MODIFIED = 8 /* write() sets, flush() resets */
diff --git a/salhelper/source/thread.cxx b/salhelper/source/thread.cxx
index 53fa2079c787..52c028c133ba 100644
--- a/salhelper/source/thread.cxx
+++ b/salhelper/source/thread.cxx
@@ -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 if it causes osl::Thread::run to start executing:
+ // return value iff it causes osl::Thread::run to start executing:
acquire();
try {
if (!create()) {
diff --git a/sc/inc/dbdata.hxx b/sc/inc/dbdata.hxx
index 16358632910d..fdcf678c6a2b 100644
--- a/sc/inc/dbdata.hxx
+++ b/sc/inc/dbdata.hxx
@@ -202,7 +202,7 @@ public:
const_iterator end() const;
ScDBData* findByIndex(sal_uInt16 nIndex);
ScDBData* findByUpperName(const OUString& rName);
- // Takes ownership of p if it returns true:
+ // Takes ownership of p iff it returns true:
SAL_WARN_UNUSED_RESULT bool insert(ScDBData* p);
void erase(iterator itr);
void erase(const ScDBData& r);
diff --git a/sc/source/filter/xml/xmlimprt.cxx b/sc/source/filter/xml/xmlimprt.cxx
index a5f76bb09769..d1bb29982160 100644
--- a/sc/source/filter/xml/xmlimprt.cxx
+++ b/sc/source/filter/xml/xmlimprt.cxx
@@ -300,7 +300,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 if we encounter office:meta
+ // behave like meta base class iff we encounter office:meta
const SvXMLTokenMap& rTokenMap = GetScImport().GetDocElemTokenMap();
if ( XML_TOK_DOC_META == rTokenMap.Get( i_nPrefix, i_rLocalName ) ) {
return SvXMLMetaDocumentContext::CreateChildContext(
diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx
index 15ce8d701f9f..5f19fba45fb6 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -560,7 +560,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 if nYear2 == nYear + 1, and
+ // as a consequence, nYearDifferent iff nYear2 == nYear + 1, and
// there are only two possible 29 Februaries to consider:
// "29 February nYear1" and "29 February nYear2"
diff --git a/scaddins/source/pricing/black_scholes.cxx b/scaddins/source/pricing/black_scholes.cxx
index 97885596cacf..95fa888a87ff 100644
--- a/scaddins/source/pricing/black_scholes.cxx
+++ b/scaddins/source/pricing/black_scholes.cxx
@@ -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 if S_T in [B1, B2]
+// assuming payoff(S_T) > 0 iff 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,
diff --git a/scaddins/source/pricing/black_scholes.hxx b/scaddins/source/pricing/black_scholes.hxx
index c42ba182a757..cdcb20b84182 100644
--- a/scaddins/source/pricing/black_scholes.hxx
+++ b/scaddins/source/pricing/black_scholes.hxx
@@ -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 if S_T in [B1, B2]
+// assuming payoff(S_T) > 0 iff 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,
diff --git a/sfx2/source/doc/DocumentMetadataAccess.cxx b/sfx2/source/doc/DocumentMetadataAccess.cxx
index a29b22c0d0f2..228f57878a34 100644
--- a/sfx2/source/doc/DocumentMetadataAccess.cxx
+++ b/sfx2/source/doc/DocumentMetadataAccess.cxx
@@ -448,7 +448,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 initalized!
- @returns true if caller should retry
+ @returns true iff caller should retry
*/
static bool
handleError( ucb::InteractiveAugmentedIOException const & i_rException,
diff --git a/sfx2/source/doc/Metadatable.cxx b/sfx2/source/doc/Metadatable.cxx
index 9f253e5811fa..59dfb8a2d2ac 100644
--- a/sfx2/source/doc/Metadatable.cxx
+++ b/sfx2/source/doc/Metadatable.cxx
@@ -175,7 +175,7 @@ public:
</p>
@returns
- true if the element has successfully been registered
+ true iff the element has successfully been registered
*/
virtual bool TryRegisterMetadatable(Metadatable& i_xObject,
OUString const& i_rStreamName, OUString const& i_rIdref)
@@ -229,7 +229,7 @@ public:
virtual void RemoveXmlIdForElement(Metadatable const&) SAL_OVERRIDE;
/** register i_rCopy as a copy of i_rSource,
- with precedence if i_bCopyPrecedesSource is true */
+ with precedence iff i_bCopyPrecedesSource is true */
void RegisterCopy(Metadatable const& i_rSource, Metadatable & i_rCopy,
const bool i_bCopyPrecedesSource);
diff --git a/sfx2/source/doc/SfxDocumentMetaData.cxx b/sfx2/source/doc/SfxDocumentMetaData.cxx
index 2c681be3535b..54b4a905f88a 100644
--- a/sfx2/source/doc/SfxDocumentMetaData.cxx
+++ b/sfx2/source/doc/SfxDocumentMetaData.cxx
@@ -334,10 +334,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 if not equal to existing text
+ /// set text of standard meta data element iff not equal to existing text
bool SAL_CALL setMetaText(const char* i_name,
const OUString & i_rValue);
- /// set text of standard meta data element if not equal to existing text
+ /// set text of standard meta data element iff 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
@@ -1002,7 +1002,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 if i_pAttrs != 0 insert new one
+// remove the given element from the DOM, and iff i_pAttrs != 0 insert new one
void SAL_CALL
SfxDocumentMetaData::updateElement(const char *i_name,
std::vector<std::pair<const char *, OUString> >* i_pAttrs)
diff --git a/sfx2/source/inc/openuriexternally.hxx b/sfx2/source/inc/openuriexternally.hxx
index 163c2af30e36..42013cd70609 100644
--- a/sfx2/source/inc/openuriexternally.hxx
+++ b/sfx2/source/inc/openuriexternally.hxx
@@ -25,7 +25,7 @@ namespace sfx2 {
/// given handleSystemShellExecuteException is false (in which case the
/// exception is re-thrown).
///
-/// @return true if execution was successful
+/// @return true iff execution was successful
bool openUriExternally(
OUString const & uri, bool handleSystemShellExecuteException);
diff --git a/slideshow/source/engine/animationnodes/basenode.cxx b/slideshow/source/engine/animationnodes/basenode.cxx
index 207db3bdd6ea..4940a8330ed7 100644
--- a/slideshow/source/engine/animationnodes/basenode.cxx
+++ b/slideshow/source/engine/animationnodes/basenode.cxx
@@ -633,7 +633,7 @@ void BaseNode::notifyEndListeners() const
// notify state change
maContext.mrEventMultiplexer.notifyAnimationEnd( mpSelf );
- // notify main sequence end (if we're the main
+ // notify main sequence end (iff 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
diff --git a/slideshow/test/tests.hxx b/slideshow/test/tests.hxx
index 1cbfd31c4339..1cf44c831dd5 100644
--- a/slideshow/test/tests.hxx
+++ b/slideshow/test/tests.hxx
@@ -29,11 +29,11 @@ namespace basegfx{ class B1DRange; class B2DRange; class B2DVector; }
class TestView : public slideshow::internal::UnoView
{
public:
- /// true if clear() has been called
+ /// true iff 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 if setClip was called (on and off)
+ /// true iff setClip was called (on and off)
virtual bool wasClipSet() const = 0;
virtual basegfx::B2DRange getBounds() const = 0;
diff --git a/solenv/gbuild/Extension.mk b/solenv/gbuild/Extension.mk
index 8119ffdd5c22..bcfa25651582 100644
--- a/solenv/gbuild/Extension.mk
+++ b/solenv/gbuild/Extension.mk
@@ -464,7 +464,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 if the extension uses any help -- currently it is done from
+# once per language iff 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
diff --git a/starmath/source/edit.cxx b/starmath/source/edit.cxx
index 92019e53f016..e42749eba4f9 100644
--- a/starmath/source/edit.cxx
+++ b/starmath/source/edit.cxx
@@ -912,7 +912,7 @@ void SmEditWindow::SelPrevMark()
}
bool SmEditWindow::HasMark(const OUString& rText)
- // returns true if 'rText' contains a mark
+ // returns true iff 'rText' contains a mark
{
return rText.indexOf("<?>") != -1;
}
diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx
index a04d7f01c0a8..2a8179ef34d6 100644
--- a/starmath/source/mathmlimport.cxx
+++ b/starmath/source/mathmlimport.cxx
@@ -1825,7 +1825,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 if we encounter office:meta
+ // behave like meta base class iff we encounter office:meta
if ( XML_NAMESPACE_OFFICE == i_nPrefix &&
i_rLocalName == GetXMLToken(XML_META) )
{
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index c5bb69cd6f3b..429e8b511dbf 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -1208,7 +1208,7 @@ double Det(const Point &rHeading1, const Point &rHeading2)
}
-/// Is true if the point 'rPoint1' belongs to the straight line through 'rPoint2'
+/// Is true iff 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)
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index b0f11e5981c4..b00884704f9c 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -321,7 +321,7 @@ static const sal_Unicode aDelimiterTable[] =
};
bool SmParser::IsDelimiter( const OUString &rTxt, sal_Int32 nPos )
- // returns 'true' if cChar is '\0' or a delimiter
+ // returns 'true' iff cChar is '\0' or a delimiter
{
assert(nPos <= rTxt.getLength()); //index out of range
diff --git a/starmath/source/rect.cxx b/starmath/source/rect.cxx
index 2bd96267f602..ad8a2e481a34 100644
--- a/starmath/source/rect.cxx
+++ b/starmath/source/rect.cxx
@@ -49,7 +49,7 @@ static sal_Unicode const aMathAlpha[] =
};
bool SmIsMathAlpha(const OUString &rText)
- // true if symbol (from StarMath Font) should be treated as letter
+ // true iff symbol (from StarMath Font) should be treated as letter
{
if (rText.isEmpty())
return false;
@@ -526,7 +526,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 if the point is inside the
+ // especially the return value is <= 0 iff the point is inside the
// rectangle.
// For simplicity the maximum-norm is used.
{
diff --git a/stoc/source/security/access_controller.cxx b/stoc/source/security/access_controller.cxx
index bc12c3fbc2a4..82767f1b57ae 100644
--- a/stoc/source/security/access_controller.cxx
+++ b/stoc/source/security/access_controller.cxx
@@ -645,7 +645,7 @@ PermissionCollection AccessController::getEffectivePermissions(
}
// call on policy
- // if this is a recurring call for the default user, then grant all permissions
+ // iff 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
{
diff --git a/sw/inc/ndhints.hxx b/sw/inc/ndhints.hxx
index cae02bbd4c68..44c853b98f1f 100644
--- a/sw/inc/ndhints.hxx
+++ b/sw/inc/ndhints.hxx
@@ -216,14 +216,14 @@ public:
SwRegHistory* GetHistory() const { return m_pHistory; }
/// try to insert the hint
- /// @return true if hint successfully inserted
+ /// @return true iff 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 if changed
+ /// calc current value of m_bHasHiddenParaField, returns true iff changed
bool CalcHiddenParaField();
DECL_FIXEDMEMPOOL_NEWDEL(SwpHints)
diff --git a/sw/inc/ndtxt.hxx b/sw/inc/ndtxt.hxx
index 9eb8eac4df37..87abad951071 100644
--- a/sw/inc/ndtxt.hxx
+++ b/sw/inc/ndtxt.hxx
@@ -291,7 +291,7 @@ public:
/// initialize the hints after file loading (which takes shortcuts)
void FileLoadedInitHints();
- /// Insert pAttr into hints array. @return true if inserted successfully
+ /// Insert pAttr into hints array. @return true iff inserted successfully
bool InsertHint( SwTextAttr * const pAttr,
const SetAttrMode nMode = SetAttrMode::DEFAULT );
/// create new text attribute from rAttr and insert it
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx
index e454aea40cf3..bc8f8d090a31 100644
--- a/sw/inc/node.hxx
+++ b/sw/inc/node.hxx
@@ -95,7 +95,7 @@ class SW_DLLPUBLIC SwNode
#endif
/// all SwFrameFormat that are anchored at the node
- /// invariant: SwFrameFormat is in the list if
+ /// invariant: SwFrameFormat is in the list iff
/// SwFrameFormat::GetAnchor().GetContentAnchor() points to this node
std::unique_ptr<std::vector<SwFrameFormat*>> m_pAnchoredFlys;
diff --git a/sw/source/core/inc/UndoSection.hxx b/sw/source/core/inc/UndoSection.hxx
index e9a6ee011433..16f1f1131c76 100644
--- a/sw/source/core/inc/UndoSection.hxx
+++ b/sw/source/core/inc/UndoSection.hxx
@@ -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 if section is TOX
+ const ::std::unique_ptr<SwTOXBase> m_pTOXBase; /// set iff section is TOX
const ::std::unique_ptr<SfxItemSet> m_pAttrSet;
::std::unique_ptr<SwHistory> m_pHistory;
::std::unique_ptr<SwRedlineData> m_pRedlData;
diff --git a/sw/source/core/txtnode/thints.cxx b/sw/source/core/txtnode/thints.cxx
index 967c34096b4a..2ba0b55a102a 100644
--- a/sw/source/core/txtnode/thints.cxx
+++ b/sw/source/core/txtnode/thints.cxx
@@ -351,7 +351,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 if hint was successfully inserted
+ @returns true iff hint was successfully inserted
*/
bool
SwpHints::TryInsertNesting( SwTextNode & rNode, SwTextAttrNesting & rNewHint )
diff --git a/sw/source/core/undo/unsect.cxx b/sw/source/core/undo/unsect.cxx
index 35ae84c7ab6b..722510d05dd8 100644
--- a/sw/source/core/undo/unsect.cxx
+++ b/sw/source/core/undo/unsect.cxx
@@ -275,7 +275,7 @@ class SwUndoDelSection
{
private:
::std::unique_ptr<SwSectionData> const m_pSectionData; /// section not TOX
- ::std::unique_ptr<SwTOXBase> const m_pTOXBase; /// set if section is TOX
+ ::std::unique_ptr<SwTOXBase> const m_pTOXBase; /// set iff section is TOX
::std::unique_ptr<SfxItemSet> const m_pAttrSet;
std::shared_ptr< ::sfx2::MetadatableUndo > const m_pMetadataUndo;
sal_uLong const m_nStartNode;
diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx
index ef170a5a9645..c0bddbb9117d 100644
--- a/sw/source/filter/ww8/wrtww8.hxx
+++ b/sw/source/filter/ww8/wrtww8.hxx
@@ -530,7 +530,7 @@ public:
SwWW8WrGrf* m_pGrf;
const SwAttrSet* m_pStyAttr; // StyleAttr for Tabs
const SwModify* m_pOutFormatNode; // write Format or Node
- const SwFormat *m_pCurrentStyle; // if bStyDef=true, then this store the current style
+ const SwFormat *m_pCurrentStyle; // iff bStyDef=true, then this store the current style
MainTextPlcDrawObj *m_pSdrObjs; // Draw-/Fly-Objects
HdFtPlcDrawObj *m_pHFSdrObjs; // Draw-/Fly-Objects in header or footer
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index 003255340460..8d767532e6a4 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -5775,7 +5775,7 @@ const wwSprmDispatcher *GetWW8SprmDispatcher()
{0x2A0C, &SwWW8ImplReader::Read_CharHighlight},//"sprmCHighlight"
//chp.fHighlight,
//chp.icoHighlight;ico
- //(fHighlight is set to 1 if
+ //(fHighlight is set to 1 iff
//ico is not 0);byte;
{0x680E, &SwWW8ImplReader::Read_PicLoc}, //"sprmCObjLocation" chp.fcObj;
//FC;long;
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index 1cb506f58b35..a69522bcddaa 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -552,7 +552,7 @@ const wwSprmSearcher *wwSprmParser::GetWW8SprmSearcher()
{0x480B, { 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 if
+ // chp.icoHighlight;ico (fHighlight is set to 1 iff
// ico is not 0)
{0x680E, { 4, L_FIX} }, // "sprmCObjLocation" chp.fcObj;FC;long;
{0x2A10, { 0, L_FIX} }, // "sprmCFFtcAsciSymb" ;;;
diff --git a/sw/source/filter/xml/xmlimp.cxx b/sw/source/filter/xml/xmlimp.cxx
index ff192eb9ab85..38120ed4e321 100644
--- a/sw/source/filter/xml/xmlimp.cxx
+++ b/sw/source/filter/xml/xmlimp.cxx
@@ -304,7 +304,7 @@ SvXMLImportContext* SwXMLOfficeDocContext_Impl::CreateChildContext(
}
}
- // behave like meta base class if we encounter office:meta
+ // behave like meta base class iff we encounter office:meta
if ( XML_TOK_DOC_META == rTokenMap.Get( nPrefix, rLocalName ) ) {
return SvXMLMetaDocumentContext::CreateChildContext(
nPrefix, rLocalName, xAttrList );
diff --git a/sw/source/uibase/wrtsh/navmgr.cxx b/sw/source/uibase/wrtsh/navmgr.cxx
index 4cbbc42f89d9..ca06f65c6607 100644
--- a/sw/source/uibase/wrtsh/navmgr.cxx
+++ b/sw/source/uibase/wrtsh/navmgr.cxx
@@ -102,7 +102,7 @@ void SwNavigationMgr::goBack() {
// We are adding the current Point to the navigation history
// so we could later navigate forward to it
- // The addEntry() method returns true if we should decrement
+ // The addEntry() method returns true iff we should decrement
// the index before navigating back
if (addEntry(*pPaM->GetPoint()) ) {
diff --git a/ucb/source/ucp/ftp/ftpdirp.cxx b/ucb/source/ucp/ftp/ftpdirp.cxx
index 64dcac4eedc6..d5d7d93e48be 100644
--- a/ucb/source/ucp/ftp/ftpdirp.cxx
+++ b/ucb/source/ucp/ftp/ftpdirp.cxx
@@ -548,7 +548,7 @@ bool FTPDirectoryParser::parseDOS (
*
* For directories, the returned name is the <filename> part; for non-
* directory files, the returned name is the <filename "." filetype> part.
- * An entry is a directory if its filetype is "DIR" (ignoring case).
+ * An entry is a directory iff its filetype is "DIR" (ignoring case).
*
* The READ, WRITE, and ISLINK mode bits are not supported.
*
diff --git a/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl b/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl
index 1beddadff16b..af6f7f911141 100644
--- a/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl
+++ b/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl
@@ -41,7 +41,7 @@ interface XInterfaceAttributeTypeDescription2:
/**
Returns whether this object reflects a bound attribute.
- @return `TRUE` if this object reflects a bound attribute
+ @return `TRUE` iff this object reflects a bound attribute
*/
boolean isBound();
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index 9a59e779d77b..10f7241a24ab 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -1299,7 +1299,7 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
::osl::MutexGuard g(m_aMutex); // don't call i_x* with mutex locked
// NB: librdf does not have a concept of graphs as such;
- // a librdf named graph exists if the model contains a statement with
+ // a librdf named graph exists iff the model contains a statement with
// the graph name as context
if (m_NamedGraphs.find(contextU) != m_NamedGraphs.end()) {
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index 0394572f2c15..340c43cb01f9 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -332,7 +332,7 @@ SvpSalGraphics::ClipUndoHandle::~ClipUndoHandle()
m_rGfx.m_aDevice = m_aDevice;
}
-// setup a clip rectangle -only- if we have to; if aRange
+// setup a clip rectangle -only- iff we have to; if aRange
// is entirely contained inside an existing clip frame, we
// will avoid setting up the clip bitmap. Similarly if the
// range doesn't appear at all we return true to avoid
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index bb1ae149aebd..536e81b7d229 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -299,7 +299,7 @@ sal_uInt16 Application::Exception( sal_uInt16 nError )
void Application::Abort( const OUString& rErrorText )
{
- //HACK: Dump core if --norestore command line argument is given (assuming
+ //HACK: Dump core iff --norestore command line argument is given (assuming
// this process is run by developers who are interested in cores, vs. end
// users who are not):
bool dumpCore = false;
diff --git a/vcl/source/filter/jpeg/transupp.c b/vcl/source/filter/jpeg/transupp.c
index fbc32a35677a..b6e289870a42 100644
--- a/vcl/source/filter/jpeg/transupp.c
+++ b/vcl/source/filter/jpeg/transupp.c
@@ -1593,7 +1593,7 @@ jcopy_markers_setup (j_decompress_ptr srcinfo, JCOPY_OPTION option)
if (option != JCOPYOPT_NONE) {
jpeg_save_markers(srcinfo, JPEG_COM, 0xFFFF);
}
- /* Save all types of APPn markers if ALL option */
+ /* Save all types of APPn markers iff ALL option */
if (option == JCOPYOPT_ALL) {
for (m = 0; m < 16; m++)
jpeg_save_markers(srcinfo, JPEG_APP0 + m, 0xFFFF);
diff --git a/vcl/unx/generic/app/i18n_status.cxx b/vcl/unx/generic/app/i18n_status.cxx
index a26a8894d542..bb77762ad2d1 100644
--- a/vcl/unx/generic/app/i18n_status.cxx
+++ b/vcl/unx/generic/app/i18n_status.cxx
@@ -209,7 +209,7 @@ Point XIMStatusWindow::updatePosition()
&aChild );
// TODO: Currently, place the status window to the (physical) left of
- // the cursor if in vertical mode (assuming that the columns in
+ // the cursor iff in vertical mode (assuming that the columns in
// vertical mode are always written from right to left, this causes the
// status window to keep out of the text already written). This
// heuristic would break if there is ever a vertical mode in which the
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 9b1e32a96cd4..aad03bc65d49 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -4519,7 +4519,7 @@ void DomainMapper_Impl::StartOrEndBookmark( const OUString& rId )
{
/*
* Add the dummy paragraph to handle section properties
- * if the first element in the section is a table. If the dummy para is not added yet, then add it;
+ * iff the first element in the section is a table. If the dummy para is not added yet, then add it;
* So bookmark is not attached to the wrong paragraph.
*/
if(getTableManager( ).isInCell() && m_nTableDepth == 0 && GetIsFirstParagraphInSection()
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java
index 6b33aa600231..33cab9fd8f87 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java
@@ -135,7 +135,7 @@ public class DocumentMergerImpl implements DocumentMerger {
// try to match the workSheet
Node matchingWorkSheet = matchWorkSheet(workSheet, workSheetList1);
- // add the new WorkSheet to the original document if match not found
+ // add the new WorkSheet to the original document iff match not found
if (matchingWorkSheet == null) {
Node cloneNode = XmlUtil.deepClone(officeBody, workSheet);
officeBody.appendChild(cloneNode);
@@ -180,4 +180,4 @@ public class DocumentMergerImpl implements DocumentMerger {
return matchSheet;
}
-}
+} \ No newline at end of file
diff --git a/xmloff/inc/txtlists.hxx b/xmloff/inc/txtlists.hxx
index 423f254f6d0a..891fb7967337 100644
--- a/xmloff/inc/txtlists.hxx
+++ b/xmloff/inc/txtlists.hxx
@@ -98,7 +98,7 @@ class XMLTextListsHelper : private boost::noncopyable
const OUString& i_ListId,
sal_Int16 & io_rLevel, const OUString& i_StyleName);
- /// get ID of the last numbered-paragraph if it has given style-name
+ /// get ID of the last numbered-paragraph iff it has given style-name
OUString GetNumberedParagraphListId(
const sal_uInt16 i_Level,
const OUString& i_StyleName);
diff --git a/xmloff/source/chart/contexts.cxx b/xmloff/source/chart/contexts.cxx
index c92480766d27..7c212e56aab8 100644
--- a/xmloff/source/chart/contexts.cxx
+++ b/xmloff/source/chart/contexts.cxx
@@ -148,7 +148,7 @@ SvXMLImportContext *SchXMLFlatDocContext_Impl::CreateChildContext(
sal_uInt16 i_nPrefix, const OUString& i_rLocalName,
const uno::Reference<xml::sax::XAttributeList>& i_xAttrList)
{
- // behave like meta base class if we encounter office:meta
+ // behave like meta base class iff we encounter office:meta
const SvXMLTokenMap& rTokenMap =
mrImportHelper.GetDocElemTokenMap();
if ( XML_TOK_DOC_META == rTokenMap.Get( i_nPrefix, i_rLocalName ) ) {
diff --git a/xmloff/source/draw/sdxmlimp.cxx b/xmloff/source/draw/sdxmlimp.cxx
index c2afa283e199..35d6bb6da2fd 100644
--- a/xmloff/source/draw/sdxmlimp.cxx
+++ b/xmloff/source/draw/sdxmlimp.cxx
@@ -240,7 +240,7 @@ SvXMLImportContext *SdXMLFlatDocContext_Impl::CreateChildContext(
sal_uInt16 i_nPrefix, const OUString& i_rLocalName,
const uno::Reference<xml::sax::XAttributeList>& i_xAttrList)
{
- // behave like meta base class if we encounter office:meta
+ // behave like meta base class iff we encounter office:meta
const SvXMLTokenMap& rTokenMap = GetSdImport().GetDocElemTokenMap();
if ( XML_TOK_DOC_META == rTokenMap.Get( i_nPrefix, i_rLocalName ) ) {
return SvXMLMetaDocumentContext::CreateChildContext(