diff options
-rw-r--r-- | sal/osl/w32/file.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/devtools/ObjectInspectorTreeHandler.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/file.cxx b/sal/osl/w32/file.cxx index 44b8ac97ba09..1c13b6211779 100644 --- a/sal/osl/w32/file.cxx +++ b/sal/osl/w32/file.cxx @@ -657,7 +657,7 @@ oslFileError SAL_CALL osl_openFile( if (result != osl_File_E_None) return result; - // tdf126742 use FILE_SHARE_WRITE to get closer to non-Windows plattform behavoiur, + // tdf126742 use FILE_SHARE_WRITE to get closer to non-Windows platform behaviour, // for details and discussion see task please DWORD dwAccess = GENERIC_READ, dwShare = FILE_SHARE_READ | FILE_SHARE_WRITE, dwCreation = 0; diff --git a/sfx2/source/devtools/ObjectInspectorTreeHandler.cxx b/sfx2/source/devtools/ObjectInspectorTreeHandler.cxx index 6b6a1bdfcc1d..58f14e16274a 100644 --- a/sfx2/source/devtools/ObjectInspectorTreeHandler.cxx +++ b/sfx2/source/devtools/ObjectInspectorTreeHandler.cxx @@ -442,7 +442,7 @@ public: bool shouldShowExpander() override { - // Show expnder only if the sequence has elements + // Show expander only if the sequence has elements int nLength = mxIdlArray->getLen(maAny); return nLength > 0; } |