This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch AOO41X in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 91d3f6ab346cdb19188cc6d3641aa72fbed8284f Author: mseidel <[email protected]> AuthorDate: Sat Apr 19 17:07:26 2025 +0200 Fix typos --- main/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx b/main/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx index 2e4ea3d8b1..964148c585 100644 --- a/main/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx +++ b/main/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx @@ -1164,7 +1164,7 @@ void SlotManager::DuplicateSelectedSlides (SfxRequest& rRequest) void SlotManager::ExecuteCommandAsynchronously (::std::auto_ptr<Command> pCommand) { - // Ownership of command is (implicitely) transferred to the queue. + // Ownership of command is (implicitly) transferred to the queue. maCommandQueue.push(pCommand.get()); pCommand.release(); Application::PostUserEvent(LINK(this,SlotManager,UserEventCallback)); @@ -1308,7 +1308,7 @@ SlideExclusionState GetSlideExclusionState (model::PageEnumeration& rPageSet) switch (eState) { case UNDEFINED: - // Use the first selected page to set the inital value. + // Use the first selected page to set the initial value. eState = bState ? EXCLUDED : INCLUDED; break; @@ -1339,4 +1339,3 @@ SlideExclusionState GetSlideExclusionState (model::PageEnumeration& rPageSet) } // end of anonymous namespace } } } // end of namespace ::sd::slidesorter::controller -
