diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-06-25 10:44:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-06-27 09:56:49 +0200 |
commit | f5176ad2defbd6d77533976abb0045368c541e99 (patch) | |
tree | 8c354782db0bdf5eea0ec685e0bf770ccf42df26 /vcl | |
parent | 0bbefaebc45a18dfe460de1b3e7bce61fd2bc9c7 (diff) |
weld SwCustomizeAddressBlockDialog
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 <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/builder.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<FixedImage>(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; |