diff options
author | Kenneth Beck <overlordkb.dev@gmail.com> | 2013-03-01 23:33:49 -0600 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-06 10:39:30 +0100 |
commit | 21e1e859a7dc883a0347b6537e2518f4b2e9d0ff (patch) | |
tree | 144fb3c0960eecba48c322e0813423747c4ade1c /dbaccess/qa | |
parent | 0ece7f368b499a010e3ecf2ffa193c242f9a78db (diff) |
fdo#60724 change spelling error REMOVEABLE -> REMOVABLE
Only applies to PropertyAttribute::REMOVEABLE, and all instances in comments.
All other instances of the misspelling have remained the same.
Example: AF_REMOVEABLE
Change-Id: I391f4101bbc3e06689318235a37d616065bc1686
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'dbaccess/qa')
-rw-r--r-- | dbaccess/qa/complex/dbaccess/PropertyBag.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/qa/complex/dbaccess/PropertyBag.java b/dbaccess/qa/complex/dbaccess/PropertyBag.java index 07884545d8e1..02389a783665 100644 --- a/dbaccess/qa/complex/dbaccess/PropertyBag.java +++ b/dbaccess/qa/complex/dbaccess/PropertyBag.java @@ -91,7 +91,7 @@ public class PropertyBag extends TestCase } // try removing the property we just added - this should fail, as it does not have - // the REMOVEABLE attribute + // the REMOVABLE attribute caughtExpected = false; try { @@ -101,7 +101,7 @@ public class PropertyBag extends TestCase catch(com.sun.star.uno.Exception e) { } if ( !caughtExpected ) { - fail("removing non-removeable properties is expected to fail - but it didn't"); + fail("removing non-removable properties is expected to fail - but it didn't"); } // try removing a non-existent property |