summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-02 18:22:30 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-03 09:43:46 +0000
commit465489d97ab9ffa0bfee02d80eb99aad771aee3f (patch)
tree0405a31efbde5e1ef61ad23afbea087a2c9cf31b /forms
parent420923ba76ad84892fd242ed37be9d85e1ea03fe (diff)
Fix typos
Change-Id: Id884946cae0687d0b71c967e236e58df17567884 Reviewed-on: https://gerrit.libreoffice.org/16707 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/qa/integration/forms/FormControlTest.java2
-rw-r--r--forms/source/component/ImageControl.hxx2
-rw-r--r--forms/source/xforms/datatypes.cxx2
-rw-r--r--forms/source/xforms/xpathlib/xpathlib.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/forms/qa/integration/forms/FormControlTest.java b/forms/qa/integration/forms/FormControlTest.java
index ba892e037608..de096949c017 100644
--- a/forms/qa/integration/forms/FormControlTest.java
+++ b/forms/qa/integration/forms/FormControlTest.java
@@ -880,7 +880,7 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
}
log.println( "created temporary image file: " + m_sImageURL );
- // for later setting the url at the imaghe control, we need a real URL, no system path
+ // for later setting the url at the image control, we need a real URL, no system path
m_sImageURL = util.utils.getOfficeTemp( m_orb ) + "image.gif";
}
diff --git a/forms/source/component/ImageControl.hxx b/forms/source/component/ImageControl.hxx
index 1317c754932f..6122336c1c50 100644
--- a/forms/source/component/ImageControl.hxx
+++ b/forms/source/component/ImageControl.hxx
@@ -191,7 +191,7 @@ private:
void implClearGraphics( bool _bForce );
bool implInsertGraphics();
- /** determines whether the control does currently have an empty grahic set
+ /** determines whether the control does currently have an empty graphic set
*/
bool impl_isEmptyGraphics_nothrow() const;
};
diff --git a/forms/source/xforms/datatypes.cxx b/forms/source/xforms/datatypes.cxx
index ab3ea3c27eae..089536f455b8 100644
--- a/forms/source/xforms/datatypes.cxx
+++ b/forms/source/xforms/datatypes.cxx
@@ -921,7 +921,7 @@ namespace xforms
// (say "12345678"), while internally, and at submission time, this is cut to
// some smaller value.
- // Additionally, this of course does not care for strings which are no numers ...
+ // Additionally, this of course does not care for strings which are no numbers...
return true;
}
diff --git a/forms/source/xforms/xpathlib/xpathlib.cxx b/forms/source/xforms/xpathlib/xpathlib.cxx
index 0f3a9fcd0df2..c90a41388a96 100644
--- a/forms/source/xforms/xpathlib/xpathlib.cxx
+++ b/forms/source/xforms/xpathlib/xpathlib.cxx
@@ -488,7 +488,7 @@ void xforms_monthsFuction(xmlXPathParserContextPtr ctxt, int nargs)
if (parseDuration(pString, bNegative, nYears, nMonths, nDays, nHours, nMinutes, nSeconds))
{
nMonths += nYears*12;
- // Days, Houres, Minutes and seconds are ignored, see spec
+ // Days, Hours, Minutes and seconds are ignored, see spec
if (bNegative)
nMonths = 0 - nMonths;
xmlXPathReturnNumber(ctxt, nMonths);