diff src/xs_config.h @ 161:02bbce56d6b0

Renamed some struct variables.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 06 Jun 2004 03:15:04 +0000
parents 4162a5370b9e
children 676ec1a1ab93
line wrap: on
line diff
--- a/src/xs_config.h	Sat Jun 05 15:36:03 2004 +0000
+++ b/src/xs_config.h	Sun Jun 06 03:15:04 2004 +0000
@@ -131,18 +131,18 @@
 
 
 typedef struct {
-	gint	valType;	/* Type of item (ATYPE_*) */
-	void	*valData;	/* Pointer to variable */
-	gchar	*valName;	/* Name of configuration item */
+	gint	itemType;	/* Type of item (CTYPE_*) */
+	void	*itemData;	/* Pointer to variable */
+	gchar	*itemName;	/* Name of configuration item */
 } t_xs_cfg_item;
 
 
 typedef struct {
 	gint	widType;
-	gint	valType;
+	gint	itemType;
 	gchar	*widName;
-	void	*valData;
-	gint	valSet;
+	void	*itemData;
+	gint	itemSet;
 } t_xs_wid_item;