diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-09-02 06:16:28 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-09-27 12:14:06 +0200 |
commit | d71859ed79eef8d0d76ea93530fe708b0effdc80 (patch) | |
tree | 58cdbd13e8b777a7afec9a2dd363e1e6ae3304e2 /vcl | |
parent | 1534025a0386584a7b8f3f929b10ce5eb33257cf (diff) |
Fix typos
Change-Id: Icfe120db02a70d43e4120d1f4cbb2704640d3990
Reviewed-on: https://gerrit.libreoffice.org/59470
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/README.scheduler | 2 | ||||
-rw-r--r-- | vcl/source/window/dndeventdispatcher.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/README.scheduler b/vcl/README.scheduler index 47edd9283c42..b7d7b61b30f7 100644 --- a/vcl/README.scheduler +++ b/vcl/README.scheduler @@ -220,7 +220,7 @@ the system message wasn't already our timer. As a result we can also skip the polling. All this is one more reason to drop the single message processing in favour of always processing all pending (system) events. -There is an other special case, we have to handle: window updates during move +There is another special case, we have to handle: window updates during move and resize of windows. These system actions run in their own nested message loop. So we have to completely switch to timers, even for 0ms. But these posted events prevent any event processing, while we're busy. The only viable diff --git a/vcl/source/window/dndeventdispatcher.cxx b/vcl/source/window/dndeventdispatcher.cxx index 0b0059914259..4f74d092aac3 100644 --- a/vcl/source/window/dndeventdispatcher.cxx +++ b/vcl/source/window/dndeventdispatcher.cxx @@ -94,7 +94,7 @@ void SAL_CALL DNDEventDispatcher::drop( const DropTargetDropEvent& dtde ) vcl::Window* pChildWindow = findTopLevelWindow(location); - // handle the case that drop is in an other vcl window than the last dragOver + // handle the case that drop is in another vcl window than the last dragOver if( pChildWindow != m_pCurrentWindow.get() ) { // fire dragExit on listeners of previous window |