Just renaming some class members and adding Jim Park's comments
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6049 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
f5df185ba2
commit
9852de80be
8 changed files with 176 additions and 133 deletions
|
@ -152,8 +152,8 @@ class LangStringList : public SortedStringListND<struct langstring>
|
|||
langstring *sort_uindex(int *num);
|
||||
|
||||
private:
|
||||
int count;
|
||||
TinyGrowBuf sortbuf;
|
||||
int m_count; // Used to set string number (sn)
|
||||
TinyGrowBuf m_sortbuf; // Used only to sort.
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -195,8 +195,8 @@ class StringsArray
|
|||
const TCHAR *get(int idx);
|
||||
|
||||
private:
|
||||
TinyGrowBuf offsets;
|
||||
GrowBuf strings;
|
||||
TinyGrowBuf m_offsets; /* Positional offsets of the stored string. */
|
||||
GrowBuf m_strings; /* Storage of the actual strings. */
|
||||
};
|
||||
|
||||
#define NLF_VERSION 6
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue