| 50 | } |
| 51 | |
| 52 | static int calcStringMatch( const lChar16 * str1, const lChar16 * str2 ) |
| 53 | { |
| 54 | int i; |
| 55 | for ( i=0; str1[i] && str2[i] && str1[i]==str2[i]; i++ ) |
| 56 | ; |
| 57 | return i; |
| 58 | } |
| 59 | |
| 60 | void TocDialog::addTocItems( LVTocItem * tocitem, const wxTreeItemId & treeitem, ldomXPointer pos, wxTreeItemId & bestPosMatchNode ) |
| 61 | { |