got rid of a zillion warnings on gcc

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5958 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2009-03-28 10:20:04 +00:00
parent f56537a20b
commit a203e2e981
10 changed files with 41 additions and 41 deletions

View file

@ -40,9 +40,9 @@ class LangStringList : public SortedStringListND<struct langstring>
LangStringList();
int add(const char *name, int *sn=0);
int get(char *name, int *sn=0, int *index=0, int *uindex=0, int *process=0);
int get(const char *name, int *sn=0, int *index=0, int *uindex=0, int *process=0);
void set(int pos, int index=-1, int uindex=-1, int process=-1);
void set(char *name, int index, int uindex=-1, int process=-1);
void set(const char *name, int index, int uindex=-1, int process=-1);
const char *pos2name(int pos);
const char *offset2name(int name);
int getnum();
@ -62,7 +62,7 @@ class StringsArray
StringsArray();
void resize(int num);
int set(int idx, char *str);
int set(int idx, const char *str);
const char *get(int idx);
private: