After commit Implement drag and drop functionality
When running vsgqtviewer.exe, I get warnings:
[vsg warning] Win32_Window::_initDrop() RegisterDragDrop failed, file drops are not available.
The call RegisterDragDrop(_window, dropTarget) in the Win32_Window::_initDrop() returns the error DRAGDROP_E_ALREADYREGISTERED
Apparently, this occurs because Qt has already performed this operation.
It would be nice to be able to disable the call to Win32_Window::_initDrop(). For example, using WindowTraits.
After commit Implement drag and drop functionality
When running
vsgqtviewer.exe, I get warnings:The call
RegisterDragDrop(_window, dropTarget)in theWin32_Window::_initDrop()returns the errorDRAGDROP_E_ALREADYREGISTEREDApparently, this occurs because Qt has already performed this operation.
It would be nice to be able to disable the call to
Win32_Window::_initDrop(). For example, usingWindowTraits.