summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-09-11 21:32:13 +0200
committerJulien Nabet <serval2412@yahoo.fr>2017-09-11 22:12:47 +0200
commitb9f2f43a9b6724fa1a09ba3115ac9abb25d52c8a (patch)
tree2a0d7dd3ed87f6e537f8aef9644a402d310eda1b
parent...and fix previous commit cd8aeed1569222edd8bfd05d9d833f74b679fcd0 (diff)
downloadcore-b9f2f43a9b6724fa1a09ba3115ac9abb25d52c8a.tar.gz
core-b9f2f43a9b6724fa1a09ba3115ac9abb25d52c8a.zip
Fix typos
Change-Id: I7bb62814c8cdf635d1c54f0a1cbb09a3d06a0d5d Reviewed-on: https://gerrit.libreoffice.org/42178 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--cui/source/dialogs/iconcdlg.cxx2
-rw-r--r--include/vcl/lazydelete.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/iconcdlg.cxx b/cui/source/dialogs/iconcdlg.cxx
index 825d846f8635..8c2f7a2f34e8 100644
--- a/cui/source/dialogs/iconcdlg.cxx
+++ b/cui/source/dialogs/iconcdlg.cxx
@@ -57,7 +57,7 @@ IconChoicePage::~IconChoicePage()
/**********************************************************************
|
-| Activate / Deaktivate
+| Activate / Deactivate
|
\**********************************************************************/
diff --git a/include/vcl/lazydelete.hxx b/include/vcl/lazydelete.hxx
index 4bc122457279..930d6c2a4157 100644
--- a/include/vcl/lazydelete.hxx
+++ b/include/vcl/lazydelete.hxx
@@ -56,7 +56,7 @@ namespace vcl
object to be destroyed lazy. The static method creates the LazyDeletor<T>
(which in turn registers itself in LazyDelete) if this is the first time
a T* is to be destroyed lazy. It then inserts the object. When the LazyDeletor<T>
- gets delte it will delete the stored objects in a fashion
+ gets delete it will delete the stored objects in a fashion
that will ensure the correct order of deletion via the specialized is_less method
(e.g. if a Window is a child of another Window and therefore should be destroyed
first it is "less" in this sense)