diff options
author | Jan Holesovsky <kendy@collabora.com> | 2019-06-06 17:23:26 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2019-06-07 13:41:05 +0200 |
commit | e9660591f8997c7696a55731a9ae81d26a9d452a (patch) | |
tree | 16a529422b06e5345192c83933f14e56449e8291 /vcl/source/app/salvtables.cxx | |
parent | b1ffd72e32530951f56bc5a36932a32bd7b6cf18 (diff) |
android: Fix build after welding AboutDialog.
Without this, the vcl's AboutDialog conflicts with the AboutDialog from
cui during linking of liblo-native-code.so.
Change-Id: Ie6e5ddd52bb7bdee1c7d53c37ea566d7ce6c9385
Reviewed-on: https://gerrit.libreoffice.org/73613
Tested-by: Jenkins
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'vcl/source/app/salvtables.cxx')
-rw-r--r-- | vcl/source/app/salvtables.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index 166a5133feb0..b6c5dfde1b68 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -1384,9 +1384,9 @@ public: class SalInstanceAboutDialog : public SalInstanceDialog, public virtual weld::AboutDialog { private: - VclPtr<::AboutDialog> m_xAboutDialog; + VclPtr<vcl::AboutDialog> m_xAboutDialog; public: - SalInstanceAboutDialog(::AboutDialog* pDialog, SalInstanceBuilder* pBuilder, bool bTakeOwnership) + SalInstanceAboutDialog(vcl::AboutDialog* pDialog, SalInstanceBuilder* pBuilder, bool bTakeOwnership) : SalInstanceDialog(pDialog, pBuilder, bTakeOwnership) , m_xAboutDialog(pDialog) { @@ -5082,7 +5082,7 @@ public: virtual std::unique_ptr<weld::AboutDialog> weld_about_dialog(const OString &id, bool bTakeOwnership) override { - AboutDialog* pAboutDialog = m_xBuilder->get<AboutDialog>(id); + vcl::AboutDialog* pAboutDialog = m_xBuilder->get<vcl::AboutDialog>(id); std::unique_ptr<weld::AboutDialog> pRet(pAboutDialog ? new SalInstanceAboutDialog(pAboutDialog, this, false) : nullptr); if (bTakeOwnership && pAboutDialog) { |