diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-08 11:59:33 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-12 08:53:37 +0100 |
commit | 4d34615cfc651e8cc72211488bb14f0ff5842237 (patch) | |
tree | 3ca03c5a894e8008e4dd416212b4dc765237b953 /dtrans/source | |
parent | 14eda666492ae3c5694cf993dfe5fa547a0628ee (diff) |
add missing initializer
Diffstat (limited to 'dtrans/source')
-rw-r--r-- | dtrans/source/win32/dnd/target.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dtrans/source/win32/dnd/target.cxx b/dtrans/source/win32/dnd/target.cxx index 5a33a9871a7c..e8946795e46d 100644 --- a/dtrans/source/win32/dnd/target.cxx +++ b/dtrans/source/win32/dnd/target.cxx @@ -67,7 +67,8 @@ DropTarget::DropTarget( const Reference<XMultiServiceFactory>& sf): m_bActive(sal_True), m_nDefaultActions(ACTION_COPY|ACTION_MOVE|ACTION_LINK|ACTION_DEFAULT), m_nCurrentDropAction( ACTION_NONE), - m_nLastDropAction(0) + m_nLastDropAction(0), + m_bDropComplete(false) { |