diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-03-21 13:03:29 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-03-21 13:03:29 +0000 |
commit | b129741c2b76c19bdbf324169c8c45020ceddde9 (patch) | |
tree | 9622a009ac0919e2a92e96b7861d163abc8ab302 | |
parent | 1024a9d2070c6aeacf7c1e36a45fdc34dea07de1 (diff) |
INTEGRATION: CWS fwkpostbeta1 (1.4.170); FILE MERGED
2005/02/17 19:59:03 abi 1.4.170.2: RESYNC: (1.4-1.5); FILE MERGED
2005/02/07 10:06:41 as 1.4.170.1: #i41898# new helper to check frames, if they are already used for load requests
-rw-r--r-- | framework/source/inc/loadenv/loadenv.hxx | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx index 990cee75fb63..4554b383edf8 100644 --- a/framework/source/inc/loadenv/loadenv.hxx +++ b/framework/source/inc/loadenv/loadenv.hxx @@ -2,9 +2,9 @@ * * $RCSfile: loadenv.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: kz $ $Date: 2005-03-04 00:14:01 $ + * last change: $Author: kz $ $Date: 2005-03-21 14:03:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -722,6 +722,21 @@ class LoadEnv : private ThreadHelpBase */ void impl_makeFrameWindowVisible(const css::uno::Reference< css::awt::XWindow >& xWindow , sal_Bool bForceToFront); + + //_______________________________________ + + /** @short checks weather a frame is already used for another load request or not. + + @descr Such frames cant be used for our "recycle feature"! + + @param xFrame + the frame, which should be checked. + + @return [sal_Bool] + TRUE if this frame is already used for loading, + FALSE otherwise. + */ + sal_Bool impl_isFrameAlreadyUsedForLoading(const css::uno::Reference< css::frame::XFrame >& xFrame) const; }; } // namespace framework |