summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorPedro Giffuni <pfg@apache.org>2014-04-29 19:25:03 +0000
committerPedro Giffuni <pfg@apache.org>2014-04-29 19:25:03 +0000
commit28206a7cb43aff5adb10f8235ad1680c3941ee3e (patch)
tree89886aa22af7483120081efc38a138d737651703 /vbahelper
parentc3f20ae9a447f50517fe545a53de91d412c3337c (diff)
Many spelling fixes: directories r* - z*.
Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before.
Notes
Notes: merged as: 820a29950b3085a713026995fdc43e32b6ded5f7
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/inc/vbahelper/collectionbase.hxx2
-rw-r--r--vbahelper/inc/vbahelper/vbaeventshelperbase.hxx2
-rw-r--r--vbahelper/source/msforms/vbacontrol.cxx2
-rw-r--r--vbahelper/source/vbahelper/collectionbase.cxx4
4 files changed, 5 insertions, 5 deletions
diff --git a/vbahelper/inc/vbahelper/collectionbase.hxx b/vbahelper/inc/vbahelper/collectionbase.hxx
index 5ff7903ce7f4..9886ab1035c9 100644
--- a/vbahelper/inc/vbahelper/collectionbase.hxx
+++ b/vbahelper/inc/vbahelper/collectionbase.hxx
@@ -61,7 +61,7 @@ public:
/** Container elements will be converted to VBA items on demand.
The initial container contains intermediate objects (e.g. UNO
- objects) which will be converted to VBA items everytime the item is
+ objects) which will be converted to VBA items every time the item is
accessed (e.g. item access method, enumeration). Changes in the
initial container are reflected by the collection.
*/
diff --git a/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx b/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx
index 8d090f4d6eef..998c43c9633e 100644
--- a/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx
+++ b/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx
@@ -130,7 +130,7 @@ protected:
const css::uno::Sequence< css::uno::Any >& rArgs ) throw (css::lang::IllegalArgumentException) = 0;
/** Derived classes may do additional postprocessing. Called even if the
- event handler does not exist, or if an error occured during execution. */
+ event handler does not exist, or if an error occurred during execution. */
virtual void implPostProcessEvent(
EventQueue& rEventQueue,
const EventHandlerInfo& rInfo,
diff --git a/vbahelper/source/msforms/vbacontrol.cxx b/vbahelper/source/msforms/vbacontrol.cxx
index ae1019f0ebf1..0ad81d8512c2 100644
--- a/vbahelper/source/msforms/vbacontrol.cxx
+++ b/vbahelper/source/msforms/vbacontrol.cxx
@@ -271,7 +271,7 @@ ScVbaControl::getControlSource() throw (uno::RuntimeException)
{
// #FIXME I *hate* having these upstream differences
// but this is necessary until I manage to upstream other
-// dependant parts
+// dependent parts
#ifdef VBA_OOBUILD_HACK
rtl::OUString sControlSource;
uno::Reference< form::binding::XBindableValue > xBindable( m_xProps, uno::UNO_QUERY );
diff --git a/vbahelper/source/vbahelper/collectionbase.cxx b/vbahelper/source/vbahelper/collectionbase.cxx
index c4f25531fc21..7eeeb6c05f84 100644
--- a/vbahelper/source/vbahelper/collectionbase.cxx
+++ b/vbahelper/source/vbahelper/collectionbase.cxx
@@ -117,7 +117,7 @@ SequenceToContainer::SequenceToContainer( const ::std::vector< uno::Reference< c
uno::Reference< container::XNamed > xNamed = *aIt;
*pElementName = xNamed->getName();
maElements.push_back( uno::Any( xNamed ) );
- // same name may occur multiple times, VBA returns first occurance
+ // same name may occur multiple times, VBA returns first occurrence
if( maElementMap.count( *pElementName ) == 0 )
maElementMap[ *pElementName ] <<= xNamed;
}
@@ -133,7 +133,7 @@ SequenceToContainer::SequenceToContainer( const ::std::vector< beans::NamedValue
{
*pElementName = aIt->Name;
maElements.push_back( aIt->Value );
- // same name may occur multiple times, VBA returns first occurance
+ // same name may occur multiple times, VBA returns first occurrence
if( maElementMap.count( *pElementName ) == 0 )
maElementMap[ *pElementName ] = aIt->Value;
}