diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-06-23 20:42:27 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-06-23 20:42:27 +0200 |
commit | 2a65bf32ec270484dcea4d22d3c93552dc0c24dd (patch) | |
tree | 93ef95ef9bda80b60e7eadaea88db64d7ab9d160 /bridges | |
parent | 09b4cbe977c755a447f97034189b85998f358d79 (diff) |
Revert "Typo: iff->if"
This reverts commit cf92da3d6e1de14756efe3f1ee79f393a2f3787d.
iff can mean "if and only if" so not a typo
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx | 2 | ||||
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx | 2 | ||||
-rw-r--r-- | bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx | 2 | ||||
-rw-r--r-- | bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx | 2 | ||||
-rw-r--r-- | bridges/source/cpp_uno/mingw_x86-64/abi.hxx | 2 | ||||
-rw-r--r-- | bridges/test/java_remote/Bug107753_Test.java | 2 |
6 files changed, 6 insertions, 6 deletions
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> */ |