From f5176ad2defbd6d77533976abb0045368c541e99 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 25 Jun 2019 10:44:12 +0100 Subject: weld SwCustomizeAddressBlockDialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit a) use EditEngine instead of TextEngine as the former can be hosted in a foreign widget b) use a SfxGrabBagItem to hold the custom pseudo-field info inside the EditEngine c) use a proxy XDropTargetListener/XDropTarget to massage the treelist entry drag source into the textengine drop target destination Change-Id: I6bf1613ed91341c24b77564405f38b5dab0aacd7 Reviewed-on: https://gerrit.libreoffice.org/74699 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- vcl/source/window/builder.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index d0e8588f59f1..d06bc3639289 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -700,7 +700,7 @@ VclBuilder::VclBuilder(vcl::Window *pParent, const OUString& sUIDir, const OUStr for (auto const& elem : m_pParserState->m_aStockMap) { FixedImage *pImage = get(elem.first); - SAL_WARN_IF(!pImage, "vcl", "missing elements of image/stock"); + SAL_WARN_IF(!pImage, "vcl", "missing elements of image/stock: " << elem.first); if (!pImage) continue; -- cgit