This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch Pilot-Pirx-nodrop in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 2417300fc550e279083e3273f1efd0edf5049df5 Author: Matthias Seidel <[email protected]> AuthorDate: Sat Dec 20 11:41:29 2025 +0100 Replace nodrop -> notallow to unify cursor themes X11 cursors are the only that use "nodrop" instead of "notallow" cursor. --- main/vcl/unx/generic/dtrans/X11_selection.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/vcl/unx/generic/dtrans/X11_selection.cxx b/main/vcl/unx/generic/dtrans/X11_selection.cxx index 0d32c9865b..8f1cc3020b 100644 --- a/main/vcl/unx/generic/dtrans/X11_selection.cxx +++ b/main/vcl/unx/generic/dtrans/X11_selection.cxx @@ -57,8 +57,8 @@ #include <movedata_mask.h> #include <linkdata_curs.h> #include <linkdata_mask.h> -#include <nodrop_curs.h> -#include <nodrop_mask.h> +#include <notallow_curs.h> +#include <notallow_mask.h> #include <com/sun/star/datatransfer/dnd/DNDConstants.hpp> #include <com/sun/star/awt/MouseEvent.hpp> #include <com/sun/star/awt/MouseButton.hpp> @@ -436,7 +436,7 @@ void SelectionManager::initialize( const Sequence< Any >& arguments ) throw (::c m_aMoveCursor = createCursorFromXPM( movedata_); m_aCopyCursor = createCursorFromXPM( copydata_); m_aLinkCursor = createCursorFromXPM( linkdata_); - m_aNoneCursor = createCursorFromXPM( nodrop_); + m_aNoneCursor = createCursorFromXPM( notallow_); // just interested in SelectionClear/Notify/Request and PropertyChange XSelectInput( m_pDisplay, m_aWindow, PropertyChangeMask );
