Kaydet (Commit) 5482ee62 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typos

Change-Id: Ic7fbd750321e4cfde1cfb0e04ffb545bb1f66d9c
Reviewed-on: https://gerrit.libreoffice.org/37921Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 82dc186a
......@@ -261,7 +261,7 @@ bool UnusedFields::VisitMemberExpr( const MemberExpr* memberExpr )
;
else if (name == "clear" || name == "dispose" || name == "clearAndDispose" || name == "swap")
// we're abusing the write-only analysis here to look for fields which don't have anything useful
// being done to them, so we're ignoreing things like std::vector::clear, vector::swap,
// being done to them, so we're ignoring things like std::vector::clear, vector::swap,
// and VclPtr::clearAndDispose
;
else
......
......@@ -238,7 +238,7 @@ BackupOldLogs(LPCWSTR basePath, int numLogsToKeep)
* if it has been 5 seconds after all work is done and the process is still not
* terminated. This thread is only started once a stopped state was sent to the
* SCM. The stop pending hang can be reproduced intermittently even if you set
* a stopped state dirctly and never set a stop pending state. It is safe to
* a stopped state directly and never set a stop pending state. It is safe to
* forcefully terminate the process ourselves since all work is done once we
* start this thread.
*/
......
......@@ -139,7 +139,7 @@ GetVersionNumberFromPath(LPWSTR path, DWORD &A, DWORD &B,
*
* @param serviceHandle A handle to an opened service with
* SERVICE_CHANGE_CONFIG access right
* @param TRUE on succcess.
* @param TRUE on success.
*/
BOOL
UpdateServiceDescription(SC_HANDLE serviceHandle)
......
......@@ -272,7 +272,7 @@ StartServiceUpdate(LPCWSTR installDir)
PathAppendSafe(newMaintServicePath,
L"maintenanceservice.exe");
// Copy the temp file in alongside the maintenace service.
// Copy the temp file in alongside the maintenance service.
// This is a requirement for maintenance service upgrades.
if (!CopyFileW(newMaintServicePath, tmpService, FALSE))
{
......
......@@ -3630,7 +3630,7 @@ int NS_main(int argc, NS_tchar **argv)
DWORD lastWriteError = 0;
do
{
// By opening a file handle wihout FILE_SHARE_READ to the callback
// By opening a file handle without FILE_SHARE_READ to the callback
// executable, the OS will prevent launching the process while it is
// being updated.
callbackFile = CreateFileW(targetPath,
......
......@@ -1776,7 +1776,7 @@ void FmFilterNavigator::KeyInput(const KeyEvent& rKEvt)
void FmFilterNavigator::DeleteSelection()
{
// to avoid the deletion of an entry twice (e.g. deletion of a parent and afterward
// the deletion of its child, I have to shrink the selecton list
// the deletion of its child, I have to shrink the selection list
::std::vector<SvTreeListEntry*> aEntryList;
for (SvTreeListEntry* pEntry = FirstSelected();
pEntry != nullptr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment