vcl/source/control/edit.cxx | 49 +++++++++++++------------------------------- 1 file changed, 15 insertions(+), 34 deletions(-)
New commits: commit 1a60a7e9536193a5e8649c296d68be3718d7eff4 Author: Christopher Sherlock <chris.sherloc...@gmail.com> AuthorDate: Sun Dec 15 20:36:19 2024 +1100 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Sun Feb 2 07:24:55 2025 +0100 vcl: remove unnecessary headers in edit.cxx Change-Id: I7da22e688d579e050918f7749707c1cb6bba47e6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178503 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx index 6c186106f42e..01a6d9ea7c8c 100644 --- a/vcl/source/control/edit.cxx +++ b/vcl/source/control/edit.cxx @@ -17,58 +17,39 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <utility> +#include <comphelper/string.hxx> +#include <i18nlangtag/languagetag.hxx> +#include <o3tl/string_view.hxx> +#include <officecfg/Office/Common.hxx> + #include <vcl/builder.hxx> -#include <vcl/event.hxx> #include <vcl/cursor.hxx> -#include <vcl/menu.hxx> -#include <vcl/toolkit/edit.hxx> -#include <vcl/weld.hxx> +#include <vcl/event.hxx> +#include <vcl/ptrstyle.hxx> #include <vcl/specialchars.hxx> -#include <vcl/svapp.hxx> -#include <vcl/settings.hxx> +#include <vcl/toolkit/edit.hxx> #include <vcl/transfer.hxx> +#include <vcl/unohelp2.hxx> #include <vcl/uitest/uiobject.hxx> -#include <vcl/ptrstyle.hxx> +#include <vcl/weld.hxx> #include <window.h> #include <svdata.hxx> #include <strings.hrc> -#include <com/sun/star/i18n/BreakIterator.hpp> -#include <com/sun/star/i18n/CharacterIteratorMode.hpp> -#include <com/sun/star/i18n/WordType.hpp> -#include <com/sun/star/datatransfer/XTransferable.hpp> -#include <com/sun/star/datatransfer/clipboard/XClipboard.hpp> - -#include <com/sun/star/datatransfer/dnd/DNDConstants.hpp> #include <com/sun/star/datatransfer/dnd/XDragGestureRecognizer.hpp> #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> - -#include <com/sun/star/i18n/InputSequenceChecker.hpp> +#include <com/sun/star/i18n/BreakIterator.hpp> +#include <com/sun/star/i18n/CharacterIteratorMode.hpp> #include <com/sun/star/i18n/InputSequenceCheckMode.hpp> +#include <com/sun/star/i18n/InputSequenceChecker.hpp> #include <com/sun/star/i18n/ScriptType.hpp> - -#include <com/sun/star/uno/Any.hxx> - -#include <comphelper/processfactory.hxx> -#include <comphelper/string.hxx> - -#include <sot/exchange.hxx> -#include <sot/formats.hxx> -#include <sal/macros.h> -#include <sal/log.hxx> - -#include <i18nlangtag/languagetag.hxx> -#include <vcl/unohelp2.hxx> -#include <o3tl/safeint.hxx> -#include <o3tl/string_view.hxx> -#include <officecfg/Office/Common.hxx> -#include <tools/json_writer.hxx> +#include <com/sun/star/i18n/WordType.hpp> #include <algorithm> #include <memory> #include <string_view> +#include <utility> using namespace ::com::sun::star; using namespace ::com::sun::star::uno;