diff options
-rw-r--r-- | fpicker/source/aqua/SalAquaFolderPicker.mm | 4 | ||||
-rw-r--r-- | fpicker/source/office/OfficeFilePicker.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/aqua/SalAquaFolderPicker.mm b/fpicker/source/aqua/SalAquaFolderPicker.mm index 3dabf488a365..00021a487398 100644 --- a/fpicker/source/aqua/SalAquaFolderPicker.mm +++ b/fpicker/source/aqua/SalAquaFolderPicker.mm @@ -79,7 +79,7 @@ sal_Int16 SAL_CALL SalAquaFolderPicker::execute() break; default: - throw uno::RuntimeException("The dialog returned with an unknown result!", static_cast< cppu::OWeakObject * >( this )); + throw uno::RuntimeException("The dialog returned with an unknown result!", getXWeak()); break; } @@ -117,7 +117,7 @@ OUString SAL_CALL SalAquaFolderPicker::getDirectory() SAL_INFO("fpicker.aqua", "# of items: " << nFiles); if (nFiles < 1) { - throw uno::RuntimeException("no directory selected", static_cast< cppu::OWeakObject * >( this )); + throw uno::RuntimeException("no directory selected", getXWeak()); } OUString aDirectory; diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx index 6d84f92af512..723a8a279918 100644 --- a/fpicker/source/office/OfficeFilePicker.cxx +++ b/fpicker/source/office/OfficeFilePicker.cxx @@ -881,7 +881,7 @@ void SAL_CALL SvtFilePicker::appendFilterGroup( const OUString& sGroupTitle, if ( FilterNameExists( aFilters ) ) throw IllegalArgumentException( "filter name exists", - static_cast< OWeakObject * >(this), 1); + getXWeak(), 1); // ensure that we have a filter list OUString sInitialCurrentFilter; |