summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/asyncmodaldialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/misc/asyncmodaldialog.cxx')
-rw-r--r--dbaccess/source/ui/misc/asyncmodaldialog.cxx16
1 files changed, 2 insertions, 14 deletions
diff --git a/dbaccess/source/ui/misc/asyncmodaldialog.cxx b/dbaccess/source/ui/misc/asyncmodaldialog.cxx
index 40337deda37b..2096c7a293c9 100644
--- a/dbaccess/source/ui/misc/asyncmodaldialog.cxx
+++ b/dbaccess/source/ui/misc/asyncmodaldialog.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "asyncmodaldialog.hxx"
#include <com/sun/star/lang/IllegalArgumentException.hpp>
@@ -25,19 +24,15 @@
#include <vcl/svapp.hxx>
#include <tools/diagnose_ex.h>
-//........................................................................
namespace dbaui
{
-//........................................................................
using ::com::sun::star::uno::Reference;
using ::com::sun::star::ui::dialogs::XExecutableDialog;
using ::com::sun::star::lang::IllegalArgumentException;
using ::com::sun::star::uno::Exception;
- //====================================================================
- //= AsyncDialogExecutor
- //====================================================================
+ // AsyncDialogExecutor
class DialogExecutor_Impl
{
Reference< XExecutableDialog > m_xDialog;
@@ -62,7 +57,6 @@ namespace dbaui
DECL_LINK( onExecute, void* );
};
- //--------------------------------------------------------------------
IMPL_LINK( DialogExecutor_Impl, onExecute, void*, /* _notInterestedIn */ )
{
try
@@ -78,23 +72,17 @@ namespace dbaui
return 0L;
}
- //====================================================================
- //= AsyncDialogExecutor
- //====================================================================
- //--------------------------------------------------------------------
+ // AsyncDialogExecutor
void AsyncDialogExecutor::executeModalDialogAsync( const Reference< XExecutableDialog >& _rxDialog )
{
if ( !_rxDialog.is() )
throw IllegalArgumentException();
-
DialogExecutor_Impl* pExecutor = new DialogExecutor_Impl( _rxDialog );
pExecutor->execute();
// will delete itself
}
-//........................................................................
} // namespace dbaui
-//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */