diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-10-01 13:22:58 +0200 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-10-01 11:26:35 +0000 |
commit | a0649f316ec53e878b5c9ffef67adb712fe9935f (patch) | |
tree | 00037da921d3ccd3049d897a258548674ae77f32 /fpicker | |
parent | 33d165a9f18c4bfcf5b878adf7057195cda4194f (diff) |
Fix typos
Change-Id: Id94c03249b2752e88499628b3ad12936b361bb2f
Reviewed-on: https://gerrit.libreoffice.org/18950
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'fpicker')
5 files changed, 9 insertions, 9 deletions
diff --git a/fpicker/source/win32/filepicker/FileOpenDlg.hxx b/fpicker/source/win32/filepicker/FileOpenDlg.hxx index 92410ead1582..8f532b363890 100644 --- a/fpicker/source/win32/filepicker/FileOpenDlg.hxx +++ b/fpicker/source/win32/filepicker/FileOpenDlg.hxx @@ -123,7 +123,7 @@ class CFileOpenDialog { public: // ctor - // bFileOpenDialog idicates if we want a FileOpen or FileSave + // bFileOpenDialog indicates if we want a FileOpen or FileSave // dialog // dwFlags see OPENFILENAME // dwTemplateId - an ID for custom templates diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx index 08d947e3a17a..88d7aea17bdf 100644 --- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx +++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx @@ -1042,7 +1042,7 @@ void VistaFilePickerImpl::impl_sta_SetControlValue(const RequestRef& rRequest) ::sal_Int16 nAction = rRequest->getArgumentOrDefault(PROP_CONTROL_ACTION, INVALID_CONTROL_ACTION); css::uno::Any aValue = rRequest->getArgumentOrDefault(PROP_CONTROL_VALUE , css::uno::Any() ); - // dont check for right values here ... + // don't check for right values here ... // most parameters are optional ! TFileDialogCustomize iCustom = impl_getCustomizeInterface(); @@ -1115,7 +1115,7 @@ void VistaFilePickerImpl::impl_sta_GetControlValue(const RequestRef& rRequest) { ::sal_Int16 nId = rRequest->getArgumentOrDefault(PROP_CONTROL_ID , INVALID_CONTROL_ID ); - // dont check for right values here ... + // don't check for right values here ... // most parameters are optional ! TFileDialogCustomize iCustom = impl_getCustomizeInterface(); @@ -1151,7 +1151,7 @@ void VistaFilePickerImpl::impl_sta_SetControlLabel(const RequestRef& rRequest) ::sal_Int16 nId = rRequest->getArgumentOrDefault(PROP_CONTROL_ID , INVALID_CONTROL_ID ); OUString sLabel = rRequest->getArgumentOrDefault(PROP_CONTROL_LABEL, OUString() ); - // dont check for right values here ... + // don't check for right values here ... // most parameters are optional ! TFileDialogCustomize iCustom = impl_getCustomizeInterface(); @@ -1171,7 +1171,7 @@ void VistaFilePickerImpl::impl_sta_EnableControl(const RequestRef& rRequest) ::sal_Int16 nId = rRequest->getArgumentOrDefault(PROP_CONTROL_ID , INVALID_CONTROL_ID ); sal_Bool bEnabled = rRequest->getArgumentOrDefault(PROP_CONTROL_ENABLE, (sal_Bool)sal_True); - // dont check for right values here ... + // don't check for right values here ... // most parameters are optional ! TFileDialogCustomize iCustom = impl_getCustomizeInterface(); diff --git a/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx b/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx index d852249f1c0d..479d23d17f55 100644 --- a/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx +++ b/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx @@ -566,7 +566,7 @@ LRESULT CALLBACK CWinFileOpenImpl::SubClassFunc( void SAL_CALL CWinFileOpenImpl::InitControlLabel(HWND hWnd) { - // set the labels for all extendet controls + // set the labels for all extended controls sal_Int16 aCtrlId = sal::static_int_cast< sal_Int16 >(GetDlgCtrlID(hWnd)); diff --git a/fpicker/source/win32/filepicker/asynceventnotifier.cxx b/fpicker/source/win32/filepicker/asynceventnotifier.cxx index f9cdd88bed04..8ec54626006f 100644 --- a/fpicker/source/win32/filepicker/asynceventnotifier.cxx +++ b/fpicker/source/win32/filepicker/asynceventnotifier.cxx @@ -152,7 +152,7 @@ void SAL_CALL CAsyncEventNotifier::shutdown() SetEvent(m_ResumeNotifying); SetEvent(m_NotifyEvent); - // releas the mutex here because the event + // release the mutex here because the event // notifier thread may need it to finish aGuard.clear(); diff --git a/fpicker/source/win32/filepicker/getfilenamewrapper.cxx b/fpicker/source/win32/filepicker/getfilenamewrapper.cxx index 35b84228a51c..e8868b699aae 100644 --- a/fpicker/source/win32/filepicker/getfilenamewrapper.cxx +++ b/fpicker/source/win32/filepicker/getfilenamewrapper.cxx @@ -156,8 +156,8 @@ namespace /* private */ } - // exceutes GetOpenFileName/GetSaveFileName in - // a separat thread + // executes GetOpenFileName/GetSaveFileName in + // a separate thread bool ThreadExecGetFileName(LPOPENFILENAME lpofn, bool bOpen, /*out*/ int& ExtErr) |