diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2000-11-07 11:14:37 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2000-11-07 11:14:37 +0000 |
commit | 7e618e00bd4b69b1cc39a51da1bd55c9cc1dc430 (patch) | |
tree | 3b0358a6d9029c8819c3cec4e5a8c4384f73612d /framework/source | |
parent | 2e34d378f93f35e476f72772685ffefef5c061b2 (diff) |
#65293#: includes
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/classes/framecontainer.cxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/framework/source/classes/framecontainer.cxx b/framework/source/classes/framecontainer.cxx index ab5cb6a58a9c..4d10150bf63d 100644 --- a/framework/source/classes/framecontainer.cxx +++ b/framework/source/classes/framecontainer.cxx @@ -2,9 +2,9 @@ * * $RCSfile: framecontainer.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: as $ $Date: 2000-10-25 06:16:44 $ + * last change: $Author: hr $ $Date: 2000-11-07 12:10:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -63,6 +63,11 @@ // my own includes //_________________________________________________________________________________________________________________ + +#include <algorithm> +#include <vector> +#include <exception> + #ifndef __FRAMEWORK_FRAMECONTAINER_HXX_ #include <classes/framecontainer.hxx> #endif @@ -290,7 +295,7 @@ Reference< XFrame > FrameContainer::operator[]( sal_uInt32 nIndex ) const // If index not valid, a out_of_range exception is thrown. xFrame = m_aContainer.at( nIndex ); } - catch( out_of_range& ) + catch( std::out_of_range& ) { // The index is not valid for current container-content ... // ... but we must handle this case! |