diff options
author | Michael T. Whiteley <mike@whiteley.org> | 2011-12-07 02:33:51 -0800 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-12-08 11:32:41 +0200 |
commit | dcfd4beb213c551f6ef6ba379651bf303bd9017a (patch) | |
tree | a819f50716357c2a5561f6b9a09809cfc52d7dbf /framework/inc | |
parent | ad2eb6c4ba3ca36e2302c721a106dac80d266325 (diff) |
childs -> children
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/classes/framecontainer.hxx | 4 | ||||
-rw-r--r-- | framework/inc/helper/oframes.hxx | 2 | ||||
-rw-r--r-- | framework/inc/helper/statusindicatorfactory.hxx | 2 | ||||
-rw-r--r-- | framework/inc/services/desktop.hxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/framework/inc/classes/framecontainer.hxx b/framework/inc/classes/framecontainer.hxx index f96a0373c1ca..f24e27dc19f1 100644 --- a/framework/inc/classes/framecontainer.hxx +++ b/framework/inc/classes/framecontainer.hxx @@ -78,8 +78,8 @@ typedef TFrameContainer::iterator TFrameIterat typedef TFrameContainer::const_iterator TConstFrameIterator ; /*-************************************************************************************************************//** - @short implement a container to hold childs of frame, task or desktop - @descr Every object of frame, task or desktop hold reference to his childs. These container is used as helper + @short implement a container to hold children of frame, task or desktop + @descr Every object of frame, task or desktop hold reference to his children. These container is used as helper to do this. Some helper-classe like OFrames or OTasksAccess use it to. They hold a pointer to an instance of this class, which is a member of a frame, task or desktop! You can append and remove frames. It's possible to set one of these frames as active or deactive. You could have full index-access to diff --git a/framework/inc/helper/oframes.hxx b/framework/inc/helper/oframes.hxx index 1c46f74bce20..1de47d1e243c 100644 --- a/framework/inc/helper/oframes.hxx +++ b/framework/inc/helper/oframes.hxx @@ -346,7 +346,7 @@ class OFrames : private ThreadHelpBase , // Must be the first of base css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory ; /// reference to global servicemanager css::uno::WeakReference< css::frame::XFrame > m_xOwner ; /// reference to owner of this instance (Hold no hard reference!) - FrameContainer* m_pFrameContainer ; /// with owner shared list to hold all direct childs of an XFramesSupplier + FrameContainer* m_pFrameContainer ; /// with owner shared list to hold all direct children of an XFramesSupplier sal_Bool m_bRecursiveSearchProtection ; /// flag to protect against recursive searches of frames at parents }; // class OFrames diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx index a01bf9570296..51ea0eb44d5b 100644 --- a/framework/inc/helper/statusindicatorfactory.hxx +++ b/framework/inc/helper/statusindicatorfactory.hxx @@ -179,7 +179,7 @@ class StatusIndicatorFactory : public css::lang::XTypeProvider // member private: - /** stack with all current indicator childs. */ + /** stack with all current indicator children. */ IndicatorStack m_aStack; /** uno service manager to create own needed uno resources. */ diff --git a/framework/inc/services/desktop.hxx b/framework/inc/services/desktop.hxx index 8dcc87227780..ac51f258d9a9 100644 --- a/framework/inc/services/desktop.hxx +++ b/framework/inc/services/desktop.hxx @@ -452,7 +452,7 @@ class Desktop : // interfaces private: css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory ; /// reference to factory, which has create this instance - FrameContainer m_aChildTaskContainer ; /// array of child tasks (childs of desktop are tasks; and tasks are also frames - But pure frames are not accepted!) + FrameContainer m_aChildTaskContainer ; /// array of child tasks (children of desktop are tasks; and tasks are also frames - But pure frames are not accepted!) ::cppu::OMultiTypeInterfaceContainerHelper m_aListenerContainer ; /// container for ALL Listener css::uno::Reference< css::frame::XFrames > m_xFramesHelper ; /// helper for XFrames, XIndexAccess, XElementAccess and implementation of a childcontainer! css::uno::Reference< css::frame::XDispatchProvider > m_xDispatchHelper ; /// helper to dispatch something for new tasks, created by "_blank"! |