[Libreoffice-commits] core.git: vcl/inc vcl/Library_vcl.mk vcl/source

Chris Sherlock chris.sherlock79 at gmail.com
Mon Jan 25 00:20:58 PST 2016


 vcl/Library_vcl.mk                       |    2 
 vcl/inc/dndevdis.hxx                     |  105 ------
 vcl/inc/dndeventdispatcher.hxx           |  105 ++++++
 vcl/source/control/lstbox.cxx            |    2 
 vcl/source/window/accessibility.cxx      |    2 
 vcl/source/window/dndevdis.cxx           |  473 -------------------------------
 vcl/source/window/dndeventdispatcher.cxx |  473 +++++++++++++++++++++++++++++++
 vcl/source/window/mouse.cxx              |    2 
 8 files changed, 582 insertions(+), 582 deletions(-)

New commits:
commit d3947708e1a3b9c1b4a7073b7fe5ff3d6b05bdf0
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Mon Jan 25 19:20:01 2016 +1100

    vcl: move dndevdis.{hxx|cxx} to dndeventdispatcher.{hxx|cxx}
    
    Change-Id: Ia9d41552a8361e086d6fcb379e041522d40fb7e9

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index 488630e..1a5dc2f 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -160,7 +160,7 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\
     vcl/source/window/decoview \
     vcl/source/window/dialog \
     vcl/source/window/dlgctrl \
-    vcl/source/window/dndevdis \
+    vcl/source/window/dndeventdispatcher \
     vcl/source/window/dndlcon \
     vcl/source/window/dockingarea \
     vcl/source/window/dockmgr \
diff --git a/vcl/inc/dndevdis.hxx b/vcl/inc/dndeventdispatcher.hxx
similarity index 100%
rename from vcl/inc/dndevdis.hxx
rename to vcl/inc/dndeventdispatcher.hxx
diff --git a/vcl/source/control/lstbox.cxx b/vcl/source/control/lstbox.cxx
index a435b85..6c7d3d8 100644
--- a/vcl/source/control/lstbox.cxx
+++ b/vcl/source/control/lstbox.cxx
@@ -33,7 +33,7 @@
 #include "svdata.hxx"
 #include "controldata.hxx"
 #include "ilstbox.hxx"
-#include "dndevdis.hxx"
+#include "dndeventdispatcher.hxx"
 
 #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp>
 
diff --git a/vcl/source/window/accessibility.cxx b/vcl/source/window/accessibility.cxx
index a36f0aa..a74fc30 100644
--- a/vcl/source/window/accessibility.cxx
+++ b/vcl/source/window/accessibility.cxx
@@ -72,7 +72,7 @@
 #include "helpwin.hxx"
 #include "sallayout.hxx"
 #include "dndlcon.hxx"
-#include "dndevdis.hxx"
+#include "dndeventdispatcher.hxx"
 
 #include "com/sun/star/accessibility/XAccessible.hpp"
 #include "com/sun/star/accessibility/AccessibleRole.hpp"
diff --git a/vcl/source/window/dndevdis.cxx b/vcl/source/window/dndeventdispatcher.cxx
similarity index 99%
rename from vcl/source/window/dndevdis.cxx
rename to vcl/source/window/dndeventdispatcher.cxx
index 20476e3..04a8ea9a 100644
--- a/vcl/source/window/dndevdis.cxx
+++ b/vcl/source/window/dndeventdispatcher.cxx
@@ -17,7 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include <dndevdis.hxx>
+#include "dndeventdispatcher.hxx"
 #include <dndlcon.hxx>
 #include <window.h>
 #include <svdata.hxx>
diff --git a/vcl/source/window/mouse.cxx b/vcl/source/window/mouse.cxx
index 330cb70..5c9fca3 100644
--- a/vcl/source/window/mouse.cxx
+++ b/vcl/source/window/mouse.cxx
@@ -38,7 +38,7 @@
 #include <salgdi.hxx>
 #include <salframe.hxx>
 #include <dndlcon.hxx>
-#include <dndevdis.hxx>
+#include "dndeventdispatcher.hxx"
 
 #include <com/sun/star/datatransfer/dnd/XDragSource.hpp>
 #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp>


More information about the Libreoffice-commits mailing list