summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-03-21 08:35:35 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-03-21 10:02:39 +0100
commitc262048da915614cf0349d6e4293ad82cc0667d9 (patch)
tree9fed6d8e1b9b47108c32b579a7db7af5b453141f /shell
parentf6d2aa05482b47fc702d9fdc655ee33e9d8e5a0e (diff)
Fix typo
Change-Id: Ib9aac2a629352a25d80061c2d4ca420e8144a94b Reviewed-on: https://gerrit.libreoffice.org/51683 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/wininetbe/wininetbackend.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx
index b6bcae4a8fc5..5334877d3451 100644
--- a/shell/source/backends/wininetbe/wininetbackend.cxx
+++ b/shell/source/backends/wininetbe/wininetbackend.cxx
@@ -160,7 +160,7 @@ WinInetBackend::WinInetBackend()
// proxy is enabled or not
// We use InternetQueryOptionW (see https://msdn.microsoft.com/en-us/library/aa385101);
- // it fills INTERNET_PROXY_INFO struct which is definned in WinInet.h to have LPCTSTR
+ // it fills INTERNET_PROXY_INFO struct which is defined in WinInet.h to have LPCTSTR
// (i.e., the UNICODE-dependent generic string type expanding to const wchar_t* when
// UNICODE is defined, and InternetQueryOption macro expands to InternetQueryOptionW).
// Thus, it's natural to expect that W version would return wide strings. But it's not