summaryrefslogtreecommitdiff
path: root/xmloff/source/forms
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:47:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:05:50 +0200
commit73e3604fc16695758b9a7f55051d2f786f74be2d (patch)
tree357784a45ad575a8de6d6d9450fb18190091c873 /xmloff/source/forms
parent396473a3d6ddd1f1ee2d4e0fd3bae5c41d2cc3fd (diff)
Fixing '....' and '..'
Change-Id: I926069d6c1f2712e5020d930f7ff6c62fd00e912 Reviewed-on: https://gerrit.libreoffice.org/78667 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff/source/forms')
-rw-r--r--xmloff/source/forms/elementexport.cxx4
-rw-r--r--xmloff/source/forms/elementimport.cxx4
-rw-r--r--xmloff/source/forms/propertyexport.cxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx
index 13ebf89709c5..7ba3b4700534 100644
--- a/xmloff/source/forms/elementexport.cxx
+++ b/xmloff/source/forms/elementexport.cxx
@@ -1476,7 +1476,7 @@ namespace xmloff
// if the EchoChar string is not empty, it is a password field
sal_Int16 nEchoChar = 0;
if (m_xPropertyInfo->hasPropertyByName(PROPERTY_ECHOCHAR))
- // grid columns do not have this property ....
+ // grid columns do not have this property...
m_xProps->getPropertyValue(PROPERTY_ECHOCHAR) >>= nEchoChar;
if (nEchoChar)
{
@@ -1488,7 +1488,7 @@ namespace xmloff
// if the MultiLine property is sal_True, it is a TextArea
bool bMultiLine = false;
if (m_xPropertyInfo->hasPropertyByName(PROPERTY_MULTILINE))
- // grid columns do not have this property ....
+ // grid columns do not have this property...
bMultiLine = ::cppu::any2bool(m_xProps->getPropertyValue(PROPERTY_MULTILINE));
if ( bMultiLine )
diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx
index c1083ba2332f..fa3289e73826 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -438,11 +438,11 @@ namespace xmloff
return sUnnamedName;
Sequence< OUString > aNames = m_xParentContainer->getElementNames();
- for (sal_Int32 i=0; i<32768; ++i) // the limit is nearly arbitrary ...
+ for (sal_Int32 i=0; i<32768; ++i) // the limit is nearly arbitrary...
{
// assemble the new name (suggestion)
OUString sReturn = sUnnamedName + OUString::number(i);
- // check the existence (this is the bad performance part ....)
+ // check the existence (this is the bad performance part...)
if (comphelper::findValue(aNames, sReturn) == -1)
// not found the name
return sReturn;
diff --git a/xmloff/source/forms/propertyexport.cxx b/xmloff/source/forms/propertyexport.cxx
index f83802638968..891e33460450 100644
--- a/xmloff/source/forms/propertyexport.cxx
+++ b/xmloff/source/forms/propertyexport.cxx
@@ -558,7 +558,7 @@ namespace xmloff
}
break;
default:
- { // hmmm .... what else do we know?
+ { // hmmm... what else do we know?
double fValue = 0;
css::util::Date aDate;
css::util::Time aTime;