summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorKorrawit Pruegsanusak <detective.conan.1412@gmail.com>2012-06-01 00:24:24 +0700
committerKorrawit Pruegsanusak <detective.conan.1412@gmail.com>2012-06-01 00:24:24 +0700
commit07202af3c52c72fad974349c3b2046b0ee2ec162 (patch)
tree9b07621a613983ee89cab622d52fba3646984fdb /sw
parentefecdeceb8f58563623a105f464cce72a09768a9 (diff)
fix some typo
Change-Id: Ib88169968d164c88703505da022887ea8d53c721
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/extras/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/README b/sw/qa/extras/README
index 49dc9aab07f9..ae174a553372 100644
--- a/sw/qa/extras/README
+++ b/sw/qa/extras/README
@@ -123,7 +123,7 @@ similarly to the property you want (getXYZ()). If there is none, it is most
probably a property that can be read using XPropertySet:
uno::Reference<beans::XPropertySet> properties(textDocument, uno::UNO_QUERY);
-sal_Int32 value; // the right type for the property
+sal_Int32 val; // the right type for the property
properties->getPropertyValue("CharacterCount") >>= val;
If there is a function to obtain the property, you need access it using the right interface.