From 10ed4af8c2574ce6ca79a8b97e203cf9197dd6f8 Mon Sep 17 00:00:00 2001
From: Matthias Seidel
Service Accessible
is just a wrapper for the interface
- XAccessible
. See the interface's documention for more
+ XAccessible
. See the interface's documentation for more
information.
Deriving from this interface is mandatory for all UNO interfaces.
Each language binding (Java, C++, StarBasic, Python, ... ) may provide a different mapping of this interface, please look into the language - dependent documention. + dependent documentation.
The UNO object does not export the state of the reference count (acquire() and release() do not have return values). In general, also the UNO object itself diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx index 141bd1e2bd18..12400c453744 100644 --- a/vcl/source/fontsubset/sft.cxx +++ b/vcl/source/fontsubset/sft.cxx @@ -1573,7 +1573,7 @@ static void KernGlyphsPrim2(TrueTypeFont *ttf, sal_uInt16 *glyphs, int nglyphs, /* All fonts with MS kern table that I've seen so far contain just one kern subtable. * MS kern documentation is very poor and I doubt that font developers will be using * several subtables. I expect them to be using OpenType tables instead. - * According to MS documention, format 2 subtables are not supported by Windows and OS/2. + * According to MS documentation, format 2 subtables are not supported by Windows and OS/2. */ if (ttf->nkern > 1) { fprintf(stderr, "KernGlyphsPrim2: %d kern tables found.\n", ttf->nkern); -- cgit