summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-26 12:52:26 +0100
committerJens Carl <j.carl43@gmx.de>2018-01-27 08:43:06 +0100
commitba8c04a6fc7d1931b4417af99aa0b45091747d83 (patch)
treea1de8505be3399485a136af53167515e5b6dbf29
parent05e4ffc1e67656c2c25caf9e51198127cafe363b (diff)
Fix typos
Change-Id: I78025acb7e17d894252b19b351eeae7a27fc5e97 Reviewed-on: https://gerrit.libreoffice.org/48685 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jens Carl <j.carl43@gmx.de>
-rw-r--r--UnoControls/source/controls/progressmonitor.cxx2
-rw-r--r--editeng/source/lookuptree/Trie.cxx2
-rw-r--r--include/animations/animationnodehelper.hxx2
-rw-r--r--qadevOOo/tests/java/mod/_sd/SdXCustomPresentationAccess.java2
-rw-r--r--sd/source/ui/animations/CustomAnimationList.cxx2
5 files changed, 5 insertions, 5 deletions
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx
index 74e43d05dfb2..d7296e871639 100644
--- a/UnoControls/source/controls/progressmonitor.cxx
+++ b/UnoControls/source/controls/progressmonitor.cxx
@@ -487,7 +487,7 @@ void SAL_CALL ProgressMonitor::dispose ()
removeControl ( xRef_Button );
removeControl ( m_xProgressBar.get() );
- // do'nt use "...->clear ()" or "... = XFixedText ()"
+ // don't use "...->clear ()" or "... = XFixedText ()"
// when other hold a reference at this object !!!
xRef_Topic_Top->dispose ();
xRef_Text_Top->dispose ();
diff --git a/editeng/source/lookuptree/Trie.cxx b/editeng/source/lookuptree/Trie.cxx
index 0badcd99703c..184330ef4f2f 100644
--- a/editeng/source/lookuptree/Trie.cxx
+++ b/editeng/source/lookuptree/Trie.cxx
@@ -104,7 +104,7 @@ void TrieNode::collectSuggestionsForCurrentNode(TrieNode* pCurrent, const OUStri
{
rSuggestionList.push_back(aStringPath);
}
- // recursivly descend tree
+ // recursively descend tree
pCurrent->collectSuggestions(aStringPath, rSuggestionList);
}
diff --git a/include/animations/animationnodehelper.hxx b/include/animations/animationnodehelper.hxx
index 364e0ad0847b..a72233a9d3ba 100644
--- a/include/animations/animationnodehelper.hxx
+++ b/include/animations/animationnodehelper.hxx
@@ -36,7 +36,7 @@ namespace anim
// only a function pointer, and a thin templated wrapper around
// that which converts member functions into that.
- /** pushes the given node to the given vector and recursivly calls itself for each child node.
+ /** pushes the given node to the given vector and recursively calls itself for each child node.
*/
inline void create_deep_vector( const css::uno::Reference< css::animations::XAnimationNode >& xNode,
std::vector< css::uno::Reference< css::animations::XAnimationNode > >& rVector )
diff --git a/qadevOOo/tests/java/mod/_sd/SdXCustomPresentationAccess.java b/qadevOOo/tests/java/mod/_sd/SdXCustomPresentationAccess.java
index 1efea375cb35..99dc87240d01 100644
--- a/qadevOOo/tests/java/mod/_sd/SdXCustomPresentationAccess.java
+++ b/qadevOOo/tests/java/mod/_sd/SdXCustomPresentationAccess.java
@@ -159,7 +159,7 @@ public class SdXCustomPresentationAccess extends TestCase {
tEnv.addObjRelation("INSTANCE" + n, oInstance);
}
} catch (com.sun.star.uno.Exception e) {
- log.println("Could't adding INSTANCEn: " + e);
+ log.println("Couldn't adding INSTANCEn: " + e);
}
return tEnv;
diff --git a/sd/source/ui/animations/CustomAnimationList.cxx b/sd/source/ui/animations/CustomAnimationList.cxx
index 58d6d6b475b1..b55f53e54022 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -69,7 +69,7 @@ using ::com::sun::star::beans::XPropertySetInfo;
namespace sd {
-// go recursivly through all shapes in the given XShapes collection and return true as soon as the
+// go recursively through all shapes in the given XShapes collection and return true as soon as the
// given shape is found. nIndex is incremented for each shape with the same shape type as the given
// shape is found until the given shape is found.
static bool getShapeIndex( const Reference< XShapes >& xShapes, const Reference< XShape >& xShape, sal_Int32& nIndex )