diff options
Diffstat (limited to 'sw/source/uibase/sidebar')
-rw-r--r-- | sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/sidebar/CommentsPanel.cxx | 4 | ||||
-rw-r--r-- | sw/source/uibase/sidebar/PageFooterPanel.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/sidebar/PageFormatPanel.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/sidebar/PageHeaderPanel.cxx | 4 | ||||
-rw-r--r-- | sw/source/uibase/sidebar/PageStylesPanel.cxx | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx b/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx index 593d2ec127fe..5e6e934ee598 100644 --- a/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx +++ b/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx @@ -101,7 +101,7 @@ std::unique_ptr<PanelLayout> A11yCheckIssuesPanel::Create(weld::Widget* pParent, SfxBindings* pBindings) { if (pParent == nullptr) - throw ::com::sun::star::lang::IllegalArgumentException( + throw css::lang::IllegalArgumentException( u"no parent window given to A11yCheckIssuesPanel::Create"_ustr, nullptr, 0); return std::make_unique<A11yCheckIssuesPanel>(pParent, pBindings); } diff --git a/sw/source/uibase/sidebar/CommentsPanel.cxx b/sw/source/uibase/sidebar/CommentsPanel.cxx index edad2a8d5c17..0910db3a49cb 100644 --- a/sw/source/uibase/sidebar/CommentsPanel.cxx +++ b/sw/source/uibase/sidebar/CommentsPanel.cxx @@ -181,8 +181,8 @@ Thread::~Thread() {} std::unique_ptr<PanelLayout> CommentsPanel::Create(weld::Widget* pParent) { if (pParent == nullptr) - throw ::com::sun::star::lang::IllegalArgumentException( - "no parent window given to CommentsPanel::Create", nullptr, 0); + throw css::lang::IllegalArgumentException("no parent window given to CommentsPanel::Create", + nullptr, 0); return std::make_unique<CommentsPanel>(pParent); } diff --git a/sw/source/uibase/sidebar/PageFooterPanel.cxx b/sw/source/uibase/sidebar/PageFooterPanel.cxx index 8060f91308f0..3817a0a97970 100644 --- a/sw/source/uibase/sidebar/PageFooterPanel.cxx +++ b/sw/source/uibase/sidebar/PageFooterPanel.cxx @@ -39,7 +39,7 @@ std::unique_ptr<PanelLayout> PageFooterPanel::Create( SfxBindings* pBindings) { if( pParent == nullptr ) - throw ::com::sun::star::lang::IllegalArgumentException(u"no parent window given to PageFooterPanel::Create"_ustr, nullptr, 0); + throw css::lang::IllegalArgumentException(u"no parent window given to PageFooterPanel::Create"_ustr, nullptr, 0); return std::make_unique<PageFooterPanel>(pParent, pBindings); } diff --git a/sw/source/uibase/sidebar/PageFormatPanel.cxx b/sw/source/uibase/sidebar/PageFormatPanel.cxx index 57aa6f03a01b..aecefa803080 100644 --- a/sw/source/uibase/sidebar/PageFormatPanel.cxx +++ b/sw/source/uibase/sidebar/PageFormatPanel.cxx @@ -48,7 +48,7 @@ std::unique_ptr<PanelLayout> PageFormatPanel::Create( SfxBindings* pBindings) { if( pParent == nullptr ) - throw ::com::sun::star::lang::IllegalArgumentException(u"no parent window given to PageFormatPanel::Create"_ustr, nullptr, 0); + throw css::lang::IllegalArgumentException(u"no parent window given to PageFormatPanel::Create"_ustr, nullptr, 0); return std::make_unique<PageFormatPanel>(pParent, pBindings); } diff --git a/sw/source/uibase/sidebar/PageHeaderPanel.cxx b/sw/source/uibase/sidebar/PageHeaderPanel.cxx index f77799314751..38b1b88402d6 100644 --- a/sw/source/uibase/sidebar/PageHeaderPanel.cxx +++ b/sw/source/uibase/sidebar/PageHeaderPanel.cxx @@ -39,9 +39,9 @@ std::unique_ptr<PanelLayout> PageHeaderPanel::Create( SfxBindings* pBindings) { if( pParent == nullptr ) - throw ::com::sun::star::lang::IllegalArgumentException(u"no parent window given to PageHeaderPanel::Create"_ustr, nullptr, 0); + throw css::lang::IllegalArgumentException(u"no parent window given to PageHeaderPanel::Create"_ustr, nullptr, 0); if( pBindings == nullptr ) - throw ::com::sun::star::lang::IllegalArgumentException(u"no SfxBindings given to PageHeaderPanel::Create"_ustr, nullptr, 0); + throw css::lang::IllegalArgumentException(u"no SfxBindings given to PageHeaderPanel::Create"_ustr, nullptr, 0); return std::make_unique<PageHeaderPanel>(pParent, pBindings); } diff --git a/sw/source/uibase/sidebar/PageStylesPanel.cxx b/sw/source/uibase/sidebar/PageStylesPanel.cxx index e35640cd6fbd..d1f8744d2b07 100644 --- a/sw/source/uibase/sidebar/PageStylesPanel.cxx +++ b/sw/source/uibase/sidebar/PageStylesPanel.cxx @@ -81,9 +81,9 @@ static SvxPageUsage PosToPageUsage_Impl( sal_uInt16 nPos ) std::unique_ptr<PanelLayout> PageStylesPanel::Create(weld::Widget* pParent, SfxBindings* pBindings) { if( pParent == nullptr ) - throw ::com::sun::star::lang::IllegalArgumentException(u"no parent window given to PageStylesPanel::Create"_ustr, nullptr, 0); + throw css::lang::IllegalArgumentException(u"no parent window given to PageStylesPanel::Create"_ustr, nullptr, 0); if( pBindings == nullptr ) - throw ::com::sun::star::lang::IllegalArgumentException(u"no SfxBindings given to PageStylesPanel::Create"_ustr, nullptr, 0); + throw css::lang::IllegalArgumentException(u"no SfxBindings given to PageStylesPanel::Create"_ustr, nullptr, 0); return std::make_unique<PageStylesPanel>(pParent, pBindings); } |