summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-03-25 21:12:16 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-03-25 21:12:16 +0100
commit25d3c618d831036c08194610f188e4781c135cfc (patch)
treeff5adadb16effa6262ce65a030b7c673fe180a91 /framework
parent5584d73f2db413889347b4b3a1fcaf124db02b21 (diff)
Typo: formated->formatted
Change-Id: Iefd4d375a0dfb36732233852f906c6b85dccc2a5
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/classes/filtercachedata.hxx6
-rw-r--r--framework/qa/complex/framework/autosave/Protocol.java4
-rw-r--r--framework/source/accelerators/keymapping.cxx2
-rw-r--r--framework/source/fwi/classes/converter.cxx12
-rw-r--r--framework/source/jobs/jobdata.cxx2
-rw-r--r--framework/source/jobs/joburl.cxx2
-rw-r--r--framework/source/xml/acceleratorconfigurationreader.cxx2
7 files changed, 15 insertions, 15 deletions
diff --git a/framework/inc/classes/filtercachedata.hxx b/framework/inc/classes/filtercachedata.hxx
index 7bb3d24f4a65..d141652c45b8 100644
--- a/framework/inc/classes/filtercachedata.hxx
+++ b/framework/inc/classes/filtercachedata.hxx
@@ -580,13 +580,13 @@ class FilterCFGAccess : public ::utl::ConfigItem
void write ( DataContainer& rData ,
DataContainer::ECFGType eType ); // write values from given struct to configuration
- static OUString encodeTypeData ( const FileType& aType ); // build own formated string of type properties
+ static OUString encodeTypeData ( const FileType& aType ); // build own formatted string of type properties
static void decodeTypeData ( const OUString& sData ,
FileType& aType );
- static OUString encodeFilterData( const Filter& aFilter ); // build own formated string of filter properties
+ static OUString encodeFilterData( const Filter& aFilter ); // build own formatted string of filter properties
static void decodeFilterData( const OUString& sData ,
Filter& aFilter );
- static OUString encodeStringList( const OUStringList& lList ); // build own formated string of OUStringList
+ static OUString encodeStringList( const OUStringList& lList ); // build own formatted string of OUStringList
static OUStringList decodeStringList( const OUString& sValue );
void setProductName ( OUStringHashMap& lUINames );
diff --git a/framework/qa/complex/framework/autosave/Protocol.java b/framework/qa/complex/framework/autosave/Protocol.java
index 6748fc3ad6b1..76f64b21e59e 100644
--- a/framework/qa/complex/framework/autosave/Protocol.java
+++ b/framework/qa/complex/framework/autosave/Protocol.java
@@ -405,7 +405,7 @@ public class Protocol extends JComponent
}
/**
- * create a colored table cell formated as HTML.
+ * create a colored table cell formatted as HTML.
*
* @param sCell
* an outside string buffer, which can be
@@ -662,7 +662,7 @@ public class Protocol extends JComponent
/**
* returns a generic html header for generating html log files
*
- * It's used from the method finish() to generate a valid html formated file.
+ * It's used from the method finish() to generate a valid html formatted file.
* For that its necessary to open some special html targets like e.g. <html>.
*
* @return A string, which includes the whole header.
diff --git a/framework/source/accelerators/keymapping.cxx b/framework/source/accelerators/keymapping.cxx
index 03d0189a34e9..6b096a899c7c 100644
--- a/framework/source/accelerators/keymapping.cxx
+++ b/framework/source/accelerators/keymapping.cxx
@@ -165,7 +165,7 @@ sal_uInt16 KeyMapping::mapIdentifierToCode(const OUString& sIdentifier)
if (pIt != m_lIdentifierHash.end())
return pIt->second;
- // Its not well known identifier - but may be a pure key code formated as string ...
+ // Its not well known identifier - but may be a pure key code formatted as string ...
// Check and convert it!
sal_uInt16 nCode = 0;
if (!KeyMapping::impl_st_interpretIdentifierAsPureKeyCode(sIdentifier, nCode))
diff --git a/framework/source/fwi/classes/converter.cxx b/framework/source/fwi/classes/converter.cxx
index 330eb38e2bea..4dfe07028fbe 100644
--- a/framework/source/fwi/classes/converter.cxx
+++ b/framework/source/fwi/classes/converter.cxx
@@ -65,7 +65,7 @@ OUString Converter::convert_DateTime2ISO8601( const DateTime& aSource )
sal_Int32 nMin = aSource.GetMin();
sal_Int32 nSec = aSource.GetSec();
- // write year formated as "YYYY"
+ // write year formatted as "YYYY"
if (nYear<10)
sBuffer.appendAscii("000");
else if (nYear<100)
@@ -75,31 +75,31 @@ OUString Converter::convert_DateTime2ISO8601( const DateTime& aSource )
sBuffer.append( (sal_Int32)nYear );
sBuffer.appendAscii("-");
- // write month formated as "MM"
+ // write month formatted as "MM"
if (nMonth<10)
sBuffer.appendAscii("0");
sBuffer.append( (sal_Int32)nMonth );
sBuffer.appendAscii("-");
- // write day formated as "DD"
+ // write day formatted as "DD"
if (nDay<10)
sBuffer.appendAscii("0");
sBuffer.append( (sal_Int32)nDay );
sBuffer.appendAscii("T");
- // write hours formated as "hh"
+ // write hours formatted as "hh"
if (nHour<10)
sBuffer.appendAscii("0");
sBuffer.append( (sal_Int32)nHour );
sBuffer.appendAscii(":");
- // write min formated as "mm"
+ // write min formatted as "mm"
if (nMin<10)
sBuffer.appendAscii("0");
sBuffer.append( (sal_Int32)nMin );
sBuffer.appendAscii(":");
- // write sec formated as "ss"
+ // write sec formatted as "ss"
if (nSec<10)
sBuffer.appendAscii("0");
sBuffer.append( (sal_Int32)nSec );
diff --git a/framework/source/jobs/jobdata.cxx b/framework/source/jobs/jobdata.cxx
index 814da4ae5d41..3c0adc804a9b 100644
--- a/framework/source/jobs/jobdata.cxx
+++ b/framework/source/jobs/jobdata.cxx
@@ -457,7 +457,7 @@ bool isEnabled( const OUString& sAdminTime ,
bool bValidUser = aISOPattern.Matches(sUserTime );
// We check for "isEnabled()" here only.
- // Note further: ISO8601 formated strings can be compared as strings directly!
+ // Note further: ISO8601 formatted strings can be compared as strings directly!
// FIXME: this is not true! "T1215" is the same time as "T12:15" or "T121500"
return (
(!bValidAdmin && !bValidUser ) ||
diff --git a/framework/source/jobs/joburl.cxx b/framework/source/jobs/joburl.cxx
index 54e69f3c84a2..0eb7d171939c 100644
--- a/framework/source/jobs/joburl.cxx
+++ b/framework/source/jobs/joburl.cxx
@@ -513,7 +513,7 @@ void JobURL::impldbg_checkURL( /*IN*/ const sal_Char* pURL ,
@descr It returns a representation of the internal object state
as string notation.
- @returns The formated string representation.
+ @returns The formatted string representation.
*/
OUString JobURL::impldbg_toString() const
{
diff --git a/framework/source/xml/acceleratorconfigurationreader.cxx b/framework/source/xml/acceleratorconfigurationreader.cxx
index 346d84a074ff..7e768f98da37 100644
--- a/framework/source/xml/acceleratorconfigurationreader.cxx
+++ b/framework/source/xml/acceleratorconfigurationreader.cxx
@@ -32,7 +32,7 @@
namespace framework{
-/* Throws a SaxException in case a wrong formated XML
+/* Throws a SaxException in case a wrong formatted XML
structure was detected.
This macro combined the given comment with a generic