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 /ucbhelper | |
parent | ad2eb6c4ba3ca36e2302c721a106dac80d266325 (diff) |
childs -> children
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/workben/ucbexplorer/ucbexplorer.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx b/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx index 2403dc1a9c87..c97a756a78bd 100644 --- a/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx +++ b/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx @@ -165,7 +165,7 @@ class UcbExplorerTreeListBox : public SvTreeListBox private: virtual SvLBoxEntry* CreateEntry() const; - virtual void RequestingChilds( SvLBoxEntry* pParent ); + virtual void RequestingChildren( SvLBoxEntry* pParent ); public: UcbExplorerTreeListBox( ResMgr & rResMgr, Window* pParent, WinBits nWinStyle = 0 ); @@ -570,11 +570,11 @@ SvLBoxEntry* UcbExplorerTreeListBox::CreateEntry() const //========================================================================= // virtual -void UcbExplorerTreeListBox::RequestingChilds( SvLBoxEntry* pParent ) +void UcbExplorerTreeListBox::RequestingChildren( SvLBoxEntry* pParent ) { UcbExplorerListBoxEntry* pEntry = static_cast< UcbExplorerListBoxEntry * >( pParent ); - if ( !pEntry->HasChilds() ) + if ( !pEntry->HasChildren() ) { switch ( pEntry->m_eType ) { |