Skip to content

Commit 64a3124

Browse files
GelmaMichael Stahl
authored and
Michael Stahl
committed
Fix typos
Change-Id: Iaa9c0aea3ea1a239e378bd714ba335f91bb1faf3 Reviewed-on: https://gerrit.libreoffice.org/41194 Reviewed-by: Michael Stahl <[email protected]> Tested-by: Michael Stahl <[email protected]>
1 parent fc443f3 commit 64a3124

File tree

87 files changed

+131
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+131
-131
lines changed

README.cross

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ libraries on Mac OS X (.dylib)) must be built as static archives
7777
instead. This has some interesting consequences for how UNO is
7878
implemented and used.
7979

80-
An iOS app is a "bundle" that contains a single executable, In an app
81-
using LibreOffice code, that eecutable then congtains the necessary
80+
An iOS app is a "bundle" that contains a single executable. In an app
81+
using LibreOffice code, that executable then contains the necessary
8282
LibreOffice libraries and UNO components statically linked.
8383

8484
The Apple tool-chain for iOS cross-building is available only for OS

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# * autogen.lastrun (rw)
66
# * autogen.lastrun.bak (rw)
77
#
8-
# If _no_ parmeters:
8+
# If _no_ parameters:
99
# Read args from autogen.input or autogen.lastrun
1010
# Else
1111
# Backup autogen.lastrun as autogen.lastrun.bak

avmedia/source/macavf/player.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ - (void)removeHandlerForObject:(NSObject*)pObject
281281
// get the actual volume
282282
const float fVolume = [mpPlayer volume];
283283

284-
// convert into Dezibel value
284+
// convert into Decibel value
285285
// -40dB <-> AVPlayer volume 0.0
286286
// 0dB <-> AVPlayer volume 1.0
287287
const int nVolumeDB = (fVolume <= 0) ? -40 : lrint( 20.0*log10(fVolume));

basic/qa/vba_tests/replace.vb

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Function verify_testReplace() as String
3131
retStr = Replace("abcbcdbc", destStr, repStr)
3232
TestLog_ASSERT retStr = "aefefdef", "expression string:" & retStr
3333
retStr = Replace(srcStr, destStr, repStr, 1, -1, vbBinaryCompare)
34-
TestLog_ASSERT retStr = "aefefdBc", "binanary compare:" & retStr
34+
TestLog_ASSERT retStr = "aefefdBc", "binary compare:" & retStr
3535
retStr = Replace(srcStr, destStr, repStr, 1, -1, vbTextCompare)
3636
TestLog_ASSERT retStr = "aefefdef", "text compare:" & retStr
3737
retStr = Replace(srcStr, destStr, repStr, compare:=vbTextCompare)

bin/lo-commit-stat

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ sub print_bugs($$$$)
401401
{
402402
my ($pbugs, $log, $wiki) = @_;
403403

404-
# sort alphabetically by bugzilla-type, but whithin that numerically
404+
# sort alphabetically by bugzilla-type, but within that numerically
405405
foreach my $bug ( sort { ($a =~ /(\D+)/)[0] cmp ($b =~ /(\D+)/)[0] ||
406406
($a =~ /(\d+)/)[0] <=> ($b =~ /(\d+)/)[0] } keys %{$pbugs}) {
407407
my $summary = $pbugs->{$bug}{'summary'};

bin/lo-pack-sources

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ sub inc_test_version($)
4848
if ($lastchar =~ /\d/) {
4949
return "$version" . "$lastchar" . "a";
5050
} elsif ($lastchar =~ /\w/) {
51-
# select next letter alhabeticaly: a->b, b->c, ...
51+
# select next letter alphabetically: a->b, b->c, ...
5252
$lastchar =~ tr/0a-zA-Z/a-zA-Z0/;
5353
return "$version" . "$lastchar";
5454
} else {

chart2/source/view/charttypes/VSeriesPlotter.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ double VSeriesPlotter::getMaximumYInRange( double fMinimumX, double fMaximumX, s
14851485

14861486
double VSeriesPlotter::getMinimumZ()
14871487
{
1488-
//this is the default for all charts without a meaningfull z axis
1488+
//this is the default for all charts without a meaningful z axis
14891489
return 1.0;
14901490
}
14911491
double VSeriesPlotter::getMaximumZ()

cli_ure/qa/climaker/climaker.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ void testSingletons(Logger l)
10251025
l.assure(false);
10261026
}
10271027

1028-
/** Case context fails to provide sigleton, a DeploymentException should be thrown.
1028+
/** Case context fails to provide singleton, a DeploymentException should be thrown.
10291029
*/
10301030
c = new Context(Context.test_kind.CREATION_FAILED);
10311031
try {

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl -*- Mode: Autoconf; tab-width: 4; indent-tabs-mode: nil; fill-column: 102 -*
22
dnl configure.ac serves as input for the GNU autoconf package
33
dnl in order to create a configure script.
44

5-
# The version number in the second argumemnt to AC_INIT should be four numbers separated by
5+
# The version number in the second argument to AC_INIT should be four numbers separated by
66
# periods. Some parts of the code requires the first one to be less than 128 and the others to be less
77
# than 256. The four numbers can optionally be followed by a period and a free-form string containing
88
# no spaces or periods, like "frobozz-mumble-42" or "alpha0". If the free-form string ends with one or
@@ -4810,7 +4810,7 @@ elif test "$_make_longver" -ge "038100"; then
48104810
dnl ===================================================================
48114811
AC_CHECK_PROGS(SHA1SUM, sha1sum sha1 shasum openssl)
48124812
if test -z "$SHA1SUM"; then
4813-
AC_MSG_ERROR([install the approproate SHA-1 checksumming program for this OS])
4813+
AC_MSG_ERROR([install the appropriate SHA-1 checksumming program for this OS])
48144814
elif test "$SHA1SUM" = "openssl"; then
48154815
SHA1SUM="openssl sha1"
48164816
fi

desktop/source/pkgchk/unopkg/unopkg_app.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ extern "C" int unopkg_main()
355355
//synchronize bundled/shared extensions
356356
//Do not synchronize when command is "reinstall". This could add types and services to UNO and
357357
//prevent the deletion of the registry data folder
358-
//synching is done in XExtensionManager.reinstall
358+
//syncing is done in XExtensionManager.reinstall
359359
if (!subcmd_gui && ! (subCommand == "reinstall")
360360
&& ! dp_misc::office_is_running())
361361
dp_misc::syncRepositories(false, xCmdEnv);

editeng/source/accessibility/AccessibleContextBase.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ bool AccessibleContextBase::GetState (sal_Int16 aState)
146146
void AccessibleContextBase::SetRelationSet (
147147
const uno::Reference<XAccessibleRelationSet>& rxNewRelationSet)
148148
{
149-
// Try to emit some meaningfull events indicating differing relations in
149+
// Try to emit some meaningful events indicating differing relations in
150150
// both sets.
151151
typedef std::pair<short int,short int> RD;
152152
const RD aRelationDescriptors[] = {

extensions/source/inc/componentmodule.hxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ typedef css::uno::Reference< css::lang::XSingleServiceFactory > (SAL_CALL *Facto
110110
class OMultiInstanceAutoRegistration
111111
{
112112
public:
113-
/** automatically registeres a multi instance component
113+
/** automatically registers a multi instance component
114114
<p>Assumed that the template argument has the three methods
115115
<ul>
116116
<li><code>static OUString getImplementationName_Static()</code><li/>

filter/source/graphicfilter/ipict/ipict.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class PictReader {
145145
private:
146146

147147
SvStream * pPict; // The Pict file to read.
148-
VclPtr<VirtualDevice> pVirDev; // Here the drawing methos will be called.
148+
VclPtr<VirtualDevice> pVirDev; // Here the drawing method will be called.
149149
// A recording into the GDIMetaFile will take place.
150150

151151
sal_uLong nOrigPos; // Initial position in pPict.

filter/source/xslt/export/wordml/ooo2wordml_table.xsl

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@
229229
<xsl:template match="table:table-cell ">
230230
<xsl:element name="w:tc">
231231
<xsl:element name="w:tcPr">
232-
<!-- to caclate the table-cell width Gary.Yang -->
232+
<!-- to calculate the table-cell width Gary.Yang -->
233233
<xsl:choose>
234-
<!--when the table-cell contains the sub-table -->
234+
<!--when the table-cell contains the sub-table -->
235235
<xsl:when test="table:table/@table:is-sub-table= 'true' ">
236236
<xsl:variable name="table-cell-width">
237237
<xsl:call-template name="calculate-sub-table-width">

filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@
11151115
</xsl:choose>
11161116
</xsl:element>
11171117
</xsl:if>
1118-
<!-- the type of condition-pos:1,the former third part of General; 2, the last General. the methods handling diffirent -->
1118+
<!-- the type of condition-pos:1,the former third part of General; 2, the last General. the methods handling different -->
11191119
<xsl:call-template name="create-number-format-content">
11201120
<xsl:with-param name="style-type-name" select="$style-type-name"/>
11211121
<xsl:with-param name="number-format-unit" select="$current-number-format-unit"/>

filter/source/xslt/import/wordml/wordml2ooo_draw.xsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@
15151515
<!--the following choose statement code will process the revised modifier
15161516
It happens that if a drawing elements has more than 2 modifier, the modifier (or say adj
15171517
in wordml) can be adjusted and only the modified adj is recorded.
1518-
what makes it more compicated is that adj support both comma and blanks.
1518+
what makes it more complicated is that adj support both comma and blanks.
15191519
so you have to use kickblanks template to kick the blanks and change it to comma version.
15201520
<key('shapetype',@type)/v:textpath[1]-->
15211521
<xsl:choose>

filter/source/xslt/odf2xhtml/export/xhtml/body.xsl

+2-2
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@
799799
<xsl:when test="$createDiv and normalize-space(.) != ''">
800800
<!-- every following frame sibling till the next draw:frame
801801
have to be incapuslated within a div with left indent.
802-
To be moved altogether arcording the indent (usually right) -->
802+
To be moved altogether according the indent (usually right) -->
803803
<xsl:comment>Next 'div' added for floating.</xsl:comment>
804804
<xsl:element name="div">
805805
<xsl:attribute name="style">
@@ -1734,7 +1734,7 @@
17341734
<xsl:value-of select="$listRestart"/>
17351735
</xsl:when>
17361736
<xsl:otherwise>
1737-
<!-- descdendants restart their list numbering, when an ancestor is not empty -->
1737+
<!-- descendants restart their list numbering, when an ancestor is not empty -->
17381738
<xsl:value-of select="not($isEmptyList)"/>
17391739
</xsl:otherwise>
17401740
</xsl:choose>

fpicker/source/office/iodlg.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2509,7 +2509,7 @@ void SvtFileDialog::AddControls_Impl( )
25092509
pImpl->_pLbTemplates->Show();
25102510
// This is strange. During the re-factoring during 96930, I discovered that this help id
25112511
// is set in the "Templates mode". This was hidden in the previous implementation.
2512-
// Shouldn't this be a more meaningfull help id.
2512+
// Shouldn't this be a more meaningful help id.
25132513
}
25142514
else if ( _nPickerFlags & PickerFlags::ImageTemplate )
25152515
{

include/osl/security_decl.hxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public:
5757
@verbatim
5858
This method will try to login the user at the denoted file server.
5959
If a network resource named \\server\username exists and this resource
60-
could be connected by this user, the methos will return true and getHomeDir
60+
could be connected by this user, the method will return true and getHomeDir
6161
will return \\server\username.
6262
@endverbatim
6363

include/svtools/brwbox.hxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ public:
540540

541541
/** suggests a default width for a column containing a given text
542542
543-
The width is calculated so that the text fits completely, plus som margin.
543+
The width is calculated so that the text fits completely, plus some margin.
544544
*/
545545
sal_uLong GetDefaultColumnWidth( const OUString& _rText ) const;
546546

include/svx/AccessibleShapeTreeInfo.hxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class SVX_DLLPUBLIC AccessibleShapeTreeInfo
5656
{
5757
public:
5858
/** Use this constructor to create an empty object that is filled later
59-
with more meaningfull data.
59+
with more meaningful data.
6060
*/
6161
AccessibleShapeTreeInfo();
6262

include/svx/SmartTagMgr.hxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private:
109109
*/
110110
void ReadConfiguration( bool bExcludedTypes, bool bRecognize );
111111

112-
/** Registeres the smart tag manager as listener at the package manager.
112+
/** Registers the smart tag manager as listener at the package manager.
113113
*/
114114
void RegisterListener();
115115

odk/docs/install.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h1>Installation Guide</h1>
7171
existing LibreOffice installation and uses the same
7272
libraries as the LibreOffice installation.</p>
7373
<p>Download the SDK from the same
74-
source as your LibreOffice packges.</p>
74+
source as your LibreOffice packages.</p>
7575
<ul>
7676
<li>If you have installed an official The
7777
Document Foundation LibreOffice release,
@@ -233,7 +233,7 @@ <h1>Installation Guide</h1>
233233
a working Perl version under
234234
<a target="_blank" href="http://www.sunfreeware.com/" title="link to www.sunfreeware.com (online)">http://www.sunfreeware.com/</a>
235235
if necessary. On Windows, the configure script
236-
uses Windows Script and a JScipt. If you have
236+
uses Windows Script and a JScript. If you have
237237
problems with Windows Script, you can download a
238238
newer version of
239239
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB-95A22B832CAA&amp;displaylang=en" title="link to the download page for the Windows Script">Windows Script</a>.</p>

odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<prop oor:name="UIName">
9595
<!-- The x-no-translate entry is a marker to prevent l10n tooling from translation. If it is not necessary. -->
9696
<value xml:lang="x-no-translate"></value>
97-
<value xml:lang="de">DevGuide FlatXML Matser</value>
97+
<value xml:lang="de">DevGuide FlatXML Master</value>
9898
<value xml:lang="en-US">DevGuide FlatXML Master</value>
9999
</prop>
100100
<prop oor:name="Flags"><value>IMPORT EXPORT ALIEN 3RDPARTYFILTER</value></prop>

odk/examples/DevelopersGuide/examples.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1209,7 +1209,7 @@ <h1>
12091209
title="link to OfficeDev/Linguistic/SampleHyphenator.java">SampleHyphenator</a></td>
12101210
<td class="cell80">A simple implementation for a <a
12111211
href="%DOXYGEN_PREFIX2%/docs/idl/ref/servicecom_1_1sun_1_1star_1_1linguistic2_1_1Hyphenator.html"
1212-
title="link to the reference documentation of com.sun.star.linguistic2.Hypenator"><code>Hyphenator</code></a>
1212+
title="link to the reference documentation of com.sun.star.linguistic2.Hyphenator"><code>Hyphenator</code></a>
12131213
service.</td>
12141214
</tr>
12151215
<tr>
@@ -1287,7 +1287,7 @@ <h1>
12871287
<td class="cell80">This code example creates the
12881288
service <a
12891289
href="%DOXYGEN_PREFIX2%/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html"
1290-
title="link to the reference documentation of com.sun.star.util.PathSettingst">
1290+
title="link to the reference documentation of com.sun.star.util.PathSettings">
12911291
<code>com.sun.star.util.PathSettings</code></a> and
12921292
retrieves all path properties from it. It shows how a developer can
12931293
change the path properties using the <a
@@ -1862,7 +1862,7 @@ <h1>
18621862
<td class="cell20"><a
18631863
href="./BasicAndDialogs/FirstStepsBasic.odt"
18641864
title="link to BasicAndDialogs/FirstStepsBasic.odt">FirstStepsBasic.odt</a></td>
1865-
<td class="cell80">This StarBasc example shows how to
1865+
<td class="cell80">This StarBasic example shows how to
18661866
create an own dialog which inserts a graphics object into a text
18671867
document.</td>
18681868
</tr>

odk/examples/examples.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ <h1>
372372
<p>Additional information:</p>
373373
<p>
374374
<a href="http://wiki.openoffice.org/wiki/Documentation/DevGuide/WritingUNO/Simple_Component_in_Java" title="link to the &quot;Simple component in Java&quot; chapter in the Developer's Guide">How to write a UNO component in Java</a><br/>
375-
<a href="http://wiki.openoffice.org/wiki/Documentation/DevGuide/ProUNO/Java/Java_Language_Binding" title="link to the &quot;Java UNO Language Bnding&quot; chapter in the Developer's Guide">Java UNO Language Binding</a><br/>
375+
<a href="http://wiki.openoffice.org/wiki/Documentation/DevGuide/ProUNO/Java/Java_Language_Binding" title="link to the &quot;Java UNO Language Binding&quot; chapter in the Developer's Guide">Java UNO Language Binding</a><br/>
376376
<a href="http://wiki.openoffice.org/wiki/Documentation/DevGuide/WritingUNO/Debugging" title="link to the &quot;Debugging Java components&quot; chapter in the Developer's Guide">Debugging Java components</a><br/>
377377
</p>
378378
</td>
@@ -416,7 +416,7 @@ <h1>
416416
<td class="cell80">Description</td>
417417
</tr>
418418
<tr>
419-
<td class="cell20"><a href="python/toolpanel/" title="link to the source directory of the ToolPanel python axample">ToolPanelPoc</a></td>
419+
<td class="cell20"><a href="python/toolpanel/" title="link to the source directory of the ToolPanel python example">ToolPanelPoc</a></td>
420420
<td class="cell80">This proof of concept extension illustrates how to create a ToolPanel in Calc.</td>
421421
</tr>
422422
</tbody>
@@ -782,7 +782,7 @@ <h1>
782782
GeneralTableSample.exe, ViewSample.exe.</td>
783783
</tr>
784784
<tr>
785-
<td class="cell20"><a href="CLI/VB.NET/WriterDemo/" title="link to the source directory of the WriterDeom example using the CLI-UNO bridge">WriterDemo</a></td>
785+
<td class="cell20"><a href="CLI/VB.NET/WriterDemo/" title="link to the source directory of the WriterDemo example using the CLI-UNO bridge">WriterDemo</a></td>
786786
<td class="cell80">This example is written in VB.NET. It creates a text
787787
document and inserts text, a table, and a text frame.</td>
788788
</tr>

offapi/com/sun/star/chart2/Axis.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ service Axis
123123
*/
124124
[optional, property] com::sun::star::chart::ChartAxisMarkPosition MarkPosition;
125125

126-
/** Determines display units are avaiblable for axis
126+
/** Determines display units are available for axis
127127
128128
@since LibreOffice 4.3
129129
*/

offapi/com/sun/star/chart2/XScaling.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ interface XScaling : ::com::sun::star::uno::XInterface
4545
* Get an interface object that conforms to a scaling rule that
4646
* is the reverse of the original scaling rule.
4747
*
48-
* @return internface object that represents the reversed
48+
* @return interface object that represents the reversed
4949
* scaling rule.
5050
*/
5151
com::sun::star::chart2::XScaling getInverseScaling();

offapi/com/sun/star/document/ExtendedTypeDetection.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module com { module sun { module star { module document {
4545
The <strong>ServiceName</strong> - This must be a valid UNO service name.
4646
It is also an entry in the corresponding configuration list.
4747
<br>
48-
Example: "com.company.devision.DetectService"
48+
Example: "com.company.division.DetectService"
4949
<br>
5050
Note that this really means the implementation name of the service.
5151
Because it's not possible otherwise to distinguish between more than one

offapi/com/sun/star/document/ExtendedTypeDetectionFactory.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ published service ExtendedTypeDetectionFactory
4242
/** factory interface to create and initialize extended type detection components.
4343
4444
<p>
45-
A detection component must be specified by its UNO implementation name and will be crated then.
45+
A detection component must be specified by its UNO implementation name and will be created then.
4646
Every new created component can be initialized with its own configuration data
4747
and may given optional arguments of the corresponding createInstanceWithArguments() request. To do so the
4848
service must support the optional interface com::sun::star::lang::XInitialization.

offapi/com/sun/star/document/XUndoManagerListener.idl

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
9595
/** is called when an Undo context has been left.
9696
9797
<p>UndoManagerEvent::UndoActionTitle carries the title of the Undo context, and
98-
UndoManagerEvent::UndoContextDepth the number of open Undo contexts, exluding the
98+
UndoManagerEvent::UndoContextDepth the number of open Undo contexts, excluding the
9999
one just left.</p>
100100
101101
@see XUndoManager::leaveUndoContext
@@ -104,7 +104,7 @@ interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
104104
*/
105105
void leftContext( [in] UndoManagerEvent iEvent );
106106

107-
/** is calledn when a hidden Undo context has been left.
107+
/** is called when a hidden Undo context has been left.
108108
109109
<p>UndoManagerEvent::UndoActionTitle is empty, as hidden Undo contexts don't have
110110
a title.</p>

offapi/com/sun/star/drawing/DrawingDocumentFactory.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
module com { module sun { module star { module drawing {
2727

2828

29-
/** @deprecated Pleas use the factory interface of the service GenericDrawingDocument.
29+
/** @deprecated Please use the factory interface of the service GenericDrawingDocument.
3030
*/
3131
published service DrawingDocumentFactory
3232
{

offapi/com/sun/star/embed/XEmbeddedClient.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ published interface XEmbeddedClient: XComponentSupplier
3636
/** asks client to let the object store itself.
3737
3838
@throws com::sun::star::uno::ObjectSaveVetoException
39-
in case container chants to avoid saving of object
39+
in case container wants to avoid saving of object
4040
4141
@throws com::sun::star::uno::Exception
4242
in case of problems during saving

0 commit comments

Comments
 (0)