From 114d48e492cc38644c0c020c6a30ab6c57179862 Mon Sep 17 00:00:00 2001 From: smatz Date: Sun, 20 Sep 2009 23:11:01 +0000 Subject: (svn r17596) -Codechange: constify some tables --- src/ini_type.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ini_type.h') diff --git a/src/ini_type.h b/src/ini_type.h index 2ee914629..45cd75b00 100644 --- a/src/ini_type.h +++ b/src/ini_type.h @@ -80,17 +80,17 @@ struct IniGroup { /** The complete ini file. */ struct IniFile { - IniGroup *group; ///< the first group in the ini - IniGroup **last_group; ///< the last group in the ini - char *comment; ///< last comment in file - const char **list_group_names; ///< NULL terminated list with group names that are lists + IniGroup *group; ///< the first group in the ini + IniGroup **last_group; ///< the last group in the ini + char *comment; ///< last comment in file + const char * const *list_group_names; ///< NULL terminated list with group names that are lists /** * Construct a new in-memory Ini file representation. * @param list_group_names A NULL terminated list with groups that should be * loaded as lists instead of variables. */ - IniFile(const char **list_group_names = NULL); + IniFile(const char * const *list_group_names = NULL); /** Free everything we loaded. */ ~IniFile(); -- cgit v1.2.3-54-g00ecf