diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-13 12:43:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-13 14:56:17 +0000 |
commit | cf2a6c290df1c5d2c1564baa7080325cb2e76157 (patch) | |
tree | 52db7218932a79b973b6de3a62afd9c9a494e1c1 /toolkit | |
parent | abc6d50af7baa101f87489038b2053e032def821 (diff) |
coverity#707416 Uncaught exception
Change-Id: Ib2f8dee2214bc3f53edae5c7c20c4924f1fec568
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindow1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxwindow1.cxx b/toolkit/source/awt/vclxwindow1.cxx index ecd1b8b0b12e..3869c97588cd 100644 --- a/toolkit/source/awt/vclxwindow1.cxx +++ b/toolkit/source/awt/vclxwindow1.cxx @@ -40,7 +40,7 @@ void VCLXWindow::SetSystemParent_Impl( const com::sun::star::uno::Any& rHandle ) Window *pWindow = GetWindow(); if ( pWindow->GetType() != WINDOW_WORKWINDOW ) { - com::sun::star::uno::Exception aException; + com::sun::star::uno::RuntimeException aException; aException.Message = "not a work window"; throw aException; } |