summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
Diffstat (limited to 'filter')
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java2
-rw-r--r--filter/source/config/cache/basecontainer.cxx2
-rw-r--r--filter/source/config/cache/filtercache.cxx12
-rw-r--r--filter/source/config/cache/filtercache.hxx14
-rw-r--r--filter/source/config/cache/typedetection.cxx4
-rw-r--r--filter/source/config/cache/typedetection.hxx14
-rw-r--r--filter/source/config/tools/split/FCFGSplit.cfg6
-rw-r--r--filter/source/flash/swfwriter.hxx2
-rw-r--r--filter/source/graphicfilter/ipict/shape.hxx4
-rw-r--r--filter/source/xslt/export/spreadsheetml/table.xsl2
10 files changed, 31 insertions, 31 deletions
diff --git a/filter/qa/complex/filter/detection/typeDetection/Helper.java b/filter/qa/complex/filter/detection/typeDetection/Helper.java
index 97918345cbd3..cb5aef0cbcf6 100644
--- a/filter/qa/complex/filter/detection/typeDetection/Helper.java
+++ b/filter/qa/complex/filter/detection/typeDetection/Helper.java
@@ -363,7 +363,7 @@ public class Helper {
/**
* Fills the Hashtable m_hFileURLs with all file names and their URL
* and the Hashtable m_hFilesTypes with all file names and their file
- * type name. This informations are extracted from "files.csv"
+ * type name. This information are extracted from "files.csv"
* This is for faster access to get fileURL and fileType of fileAlias
*/
public void createFilesList(){
diff --git a/filter/source/config/cache/basecontainer.cxx b/filter/source/config/cache/basecontainer.cxx
index 4caefb0ca5c1..05040447d17c 100644
--- a/filter/source/config/cache/basecontainer.cxx
+++ b/filter/source/config/cache/basecontainer.cxx
@@ -476,7 +476,7 @@ css::uno::Reference< css::container::XEnumeration > SAL_CALL BaseContainer::crea
// <- SAFE
// create a specialized enumeration helper, which
- // provides the collected informations outside.
+ // provides the collected information outside.
// It hold a reference to us ... and call our container interface directly.
// be aware of some direct callbacks if it will be created :-)
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index 049455335372..206ff6d70e5b 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -973,7 +973,7 @@ css::uno::Reference< css::uno::XInterface > FilterCache::impl_createConfigAccess
// If configuration could not be opened ... but factory method does not throwed an exception
// trigger throwing of our own CorruptedFilterConfigurationException.
- // Let message empty. The normal exception text show enough informations to the user.
+ // Let message empty. The normal exception text show enough information to the user.
if (! xCfg.is())
throw css::uno::Exception(
_FILTER_CONFIG_FROM_ASCII_("Got NULL reference on opening configuration file ... but no exception."),
@@ -1047,7 +1047,7 @@ void FilterCache::impl_validateAndOptimize()
CacheItem aType = pIt->second;
// create list of all known detect services / frame loader / content handler on demand
- // Because these informations are available as type properties!
+ // Because these information are available as type properties!
::rtl::OUString sDetectService;
aType[PROPNAME_DETECTSERVICE ] >>= sDetectService;
if (!sDetectService.isEmpty())
@@ -1384,7 +1384,7 @@ void FilterCache::impl_load(EFillState eRequiredState)
}
// ------------------------------------------
- // b) We need all type informations ...
+ // b) We need all type information ...
if (
((eRequiredState & E_CONTAINS_TYPES) == E_CONTAINS_TYPES) &&
((m_eFillState & E_CONTAINS_TYPES) != E_CONTAINS_TYPES)
@@ -1401,7 +1401,7 @@ void FilterCache::impl_load(EFillState eRequiredState)
}
// ------------------------------------------
- // c) We need all filter informations ...
+ // c) We need all filter information ...
if (
((eRequiredState & E_CONTAINS_FILTERS) == E_CONTAINS_FILTERS) &&
((m_eFillState & E_CONTAINS_FILTERS) != E_CONTAINS_FILTERS)
@@ -1418,7 +1418,7 @@ void FilterCache::impl_load(EFillState eRequiredState)
}
// ------------------------------------------
- // c) We need all frame loader informations ...
+ // c) We need all frame loader information ...
if (
((eRequiredState & E_CONTAINS_FRAMELOADERS) == E_CONTAINS_FRAMELOADERS) &&
((m_eFillState & E_CONTAINS_FRAMELOADERS) != E_CONTAINS_FRAMELOADERS)
@@ -1435,7 +1435,7 @@ void FilterCache::impl_load(EFillState eRequiredState)
}
// ------------------------------------------
- // d) We need all content handler informations ...
+ // d) We need all content handler information ...
if (
((eRequiredState & E_CONTAINS_CONTENTHANDLERS) == E_CONTAINS_CONTENTHANDLERS) &&
((m_eFillState & E_CONTAINS_CONTENTHANDLERS) != E_CONTAINS_CONTENTHANDLERS)
diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx
index 34731100dae4..3ea66610c0dc 100644
--- a/filter/source/config/cache/filtercache.hxx
+++ b/filter/source/config/cache/filtercache.hxx
@@ -235,7 +235,7 @@ class FilterCache : public BaseLock
was already loaded from the underlying configuration.
@descr This information can be used to detect missing
- informations and load it on demand.
+ information and load it on demand.
@see EFillState
@see load()
@@ -323,12 +323,12 @@ class FilterCache : public BaseLock
/** @short force special fill state of this cache.
@descr This method check if all requested items/properties already
- exists. Only missing informations will be readed.
+ exists. Only missing information will be readed.
Otherwise this method does nothing!
This method must be called from every user of this cache
everytimes it need a filled cache. Normaly we load
- only standard informations into this cache on startup.
+ only standard information into this cache on startup.
After a few seconds we start a special thread, which
may fill this cache completely. But if somehwere outside
need a filled cache before ... it can run into trouble,
@@ -338,7 +338,7 @@ class FilterCache : public BaseLock
Of course it would be possible to supress this special load thread
in general and start it manualy inside this load() request.
The outside code decide then, if and when this cache will be filled
- with all available informations ...
+ with all available information ...
@param bByThread
indicates using of this method by our global "load-on-demand-thread".
@@ -363,7 +363,7 @@ class FilterCache : public BaseLock
@descr This information can be used e.g. to start
a search on top of this cache with a minimum on
- informations ... and do it again, if some other
+ information ... and do it again, if some other
cache items seems to be available after calling of "loadAll()"
on this cache and first search does not had any valid results.
@@ -379,7 +379,7 @@ class FilterCache : public BaseLock
the specified criteria.
@descr The returned key names can be used at another method "getItem()"
- of this cache to get further informations about this item.
+ of this cache to get further information about this item.
@attention Please note: because this cache can be used inside multithreaded
environments, such returned key name can point to an already removed
@@ -674,7 +674,7 @@ class FilterCache : public BaseLock
@param eProvider
specify the needed configuration provider.
- see EConfigProvider for further informations ...
+ see EConfigProvider for further information ...
@attention If a configuration access was opened successfully
all neccessary listener connections will be established
diff --git a/filter/source/config/cache/typedetection.cxx b/filter/source/config/cache/typedetection.cxx
index 0894515371a6..a532cdddbced 100644
--- a/filter/source/config/cache/typedetection.cxx
+++ b/filter/source/config/cache/typedetection.cxx
@@ -1246,7 +1246,7 @@ sal_Bool TypeDetection::impl_validateAndSetTypeOnDescriptor( ::comphelper::
aLock.clear();
// <- SAFE
- // remove all related informations from the descriptor
+ // remove all related information from the descriptor
impl_removeTypeFilterFromDescriptor(rDescriptor);
return sal_False;
}
@@ -1276,7 +1276,7 @@ sal_Bool TypeDetection::impl_validateAndSetFilterOnDescriptor( ::comphelper
}
catch(const css::container::NoSuchElementException&){}
- // remove all related informations from the descriptor
+ // remove all related information from the descriptor
impl_removeTypeFilterFromDescriptor(rDescriptor);
return sal_False;
}
diff --git a/filter/source/config/cache/typedetection.hxx b/filter/source/config/cache/typedetection.hxx
index ae2882304682..d7f89a4eb6b3 100644
--- a/filter/source/config/cache/typedetection.hxx
+++ b/filter/source/config/cache/typedetection.hxx
@@ -284,12 +284,12 @@ private:
//---------------------------------------
/** @short validate the specified type and its relation ships
- and set all needed informations related to this type
+ and set all needed information related to this type
in the specified descriptor.
- @descr Related informations are: - corresponding filter
- - media type
- - ...
+ @descr Related information are: - corresponding filter
+ - media type
+ - ...
@param rDescriptor
provides access to the outside MediaDescriptor.
@@ -307,11 +307,11 @@ private:
//---------------------------------------
/** @short validate the specified filter and its relation ships
- and set all needed informations related to this filter
+ and set all needed information related to this filter
in the specified descriptor.
- @descr Related informations are: - corresponding type
- - ...
+ @descr Related information are: - corresponding type
+ - ...
@param rDescriptor
provides access to the outside MediaDescriptor.
diff --git a/filter/source/config/tools/split/FCFGSplit.cfg b/filter/source/config/tools/split/FCFGSplit.cfg
index 680f7a1ef0c7..c08ecbab6308 100644
--- a/filter/source/config/tools/split/FCFGSplit.cfg
+++ b/filter/source/config/tools/split/FCFGSplit.cfg
@@ -98,13 +98,13 @@ fragment_extension = .xcu
# specify a debug level for generating debug output
# on the console
# The following levels exists:
-# 0 = no output
+# 0 = no output
# 1 = only errors/exceptions will be shown
# 2 = errors/exceptions and warnings will be shown
# 3 = additional to errors and warnings some global
-# informations are shown
+# information will be shown
# 4 = additional to errors and warnings some global
-# and many detailed informations are shown
+# and detailed information will be shown
#------------------------------------------------------
debug = 4
diff --git a/filter/source/flash/swfwriter.hxx b/filter/source/flash/swfwriter.hxx
index 27c2da30d3fe..1bd30aff9429 100644
--- a/filter/source/flash/swfwriter.hxx
+++ b/filter/source/flash/swfwriter.hxx
@@ -414,7 +414,7 @@ private:
const PolyPolygon* mpClipPolyPolygon;
- /** holds the informations of the objects defined in the movie stream
+ /** holds the information of the objects defined in the movie stream
while executing defineShape
*/
typedef std::vector<sal_uInt16> CharacterIdVector;
diff --git a/filter/source/graphicfilter/ipict/shape.hxx b/filter/source/graphicfilter/ipict/shape.hxx
index 887307e87a17..4cc67700a1c1 100644
--- a/filter/source/graphicfilter/ipict/shape.hxx
+++ b/filter/source/graphicfilter/ipict/shape.hxx
@@ -23,8 +23,8 @@ namespace PictReaderShape {
/** draws a line from orig to dest knowing penSize
Attention: in order to draw horizontal/vertical/small lines, this function can instead draw a rectangle or
- a polygon. In this case, we retrieve the line informations from VirtualDev ( GetLineColor )
- and we use them as fill informations ( SetFillColor ). We restore after the VirtualDev state.
+ a polygon. In this case, we retrieve the line information from VirtualDev ( GetLineColor )
+ and we use them as fill information ( SetFillColor ). We restore after the VirtualDev state.
This implies also that this function must be modified if we use real pattern to draw these primitives.
*/
diff --git a/filter/source/xslt/export/spreadsheetml/table.xsl b/filter/source/xslt/export/spreadsheetml/table.xsl
index 810e1a20bef6..336e60907cc7 100644
--- a/filter/source/xslt/export/spreadsheetml/table.xsl
+++ b/filter/source/xslt/export/spreadsheetml/table.xsl
@@ -818,7 +818,7 @@
<!-- issue in Excel: can not have an empty 'DateTime' cell -->
<xsl:attribute name="ss:Type">DateTime</xsl:attribute>
<!-- Gathering information of two StarOffice date/time attributes
- Excel always needs both informations in one attribute -->
+ Excel always needs both pieces of information in one attribute -->
<xsl:choose>
<xsl:when test="@office:date-value">
<!-- office:date-value may contain time (after 'T')-->