| 734 | |
| 735 | |
| 736 | AString cIniFile::GetKeyComment(const int keyID, const int commentID) const |
| 737 | { |
| 738 | if ((keyID < (int)keys.size()) && (commentID < (int)keys[keyID].comments.size())) |
| 739 | { |
| 740 | return keys[keyID].comments[commentID]; |
| 741 | } |
| 742 | return ""; |
| 743 | } |
| 744 | |
| 745 | |
| 746 |