project_files/frontlib/model/cfg.c
changeset 7271 5608ac657362
parent 7230 240620f46dd7
child 7275 15f722e0b96f
--- a/project_files/frontlib/model/cfg.c	Thu Jun 21 21:32:12 2012 +0200
+++ b/project_files/frontlib/model/cfg.c	Mon Jun 25 00:42:07 2012 +0200
@@ -34,7 +34,7 @@
 		flib_cfg_meta_release(cfg->meta);
 		free(cfg->mods);
 		free(cfg->settings);
-		free(cfg->schemeName);
+		free(cfg->name);
 		free(cfg);
 	}
 }
@@ -155,11 +155,11 @@
 	}
 
 	result->meta = flib_cfg_meta_retain(meta);
-	result->schemeName = flib_strdupnull(schemeName);
+	result->name = flib_strdupnull(schemeName);
 	result->mods = flib_calloc(meta->modCount, sizeof(*result->mods));
 	result->settings = flib_calloc(meta->settingCount, sizeof(*result->settings));
 
-	if(!result->mods || !result->settings || !result->schemeName) {
+	if(!result->mods || !result->settings || !result->name) {
 		flib_cfg_destroy(result);
 		return NULL;
 	}
@@ -173,7 +173,7 @@
 flib_cfg *flib_cfg_copy(flib_cfg *cfg) {
 	flib_cfg *result = NULL;
 	if(cfg) {
-		result = flib_cfg_create(cfg->meta, cfg->schemeName);
+		result = flib_cfg_create(cfg->meta, cfg->name);
 		if(result) {
 			memcpy(result->mods, cfg->mods, cfg->meta->modCount * sizeof(*cfg->mods));
 			memcpy(result->settings, cfg->settings, cfg->meta->settingCount * sizeof(*cfg->settings));