aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorokan2013-01-04 16:23:04 +0000
committerokan2013-01-04 16:23:04 +0000
commit4b1ea8b20680932c9423c6bcedf86564a41ba024 (patch)
tree3ed4a840a52a347ab361d4f8f42f12c2eca5d57c /conf.c
parent1f61f7e4a9bf381aa66667f07087d1161436eae8 (diff)
downloadcwm-4b1ea8b20680932c9423c6bcedf86564a41ba024.tar.gz
get rid of struct color
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/conf.c b/conf.c
index 2f9a057..c28c266 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.117 2013/01/01 14:33:52 okan Exp $
+ * $OpenBSD: conf.c,v 1.118 2013/01/04 16:23:04 okan Exp $
*/
#include <sys/param.h>
@@ -71,11 +71,11 @@ static char *menu_color_binds[CWM_COLOR_MENU_MAX] = {
"", /* CWM_COLOR_MENU_FONT_SEL */
};
-static struct color color_binds[CWM_COLOR_MAX] = {
- { "#CCCCCC", 0 }, /* CWM_COLOR_BORDER_ACTIVE */
- { "#666666", 0 }, /* CWM_COLOR_BORDER_INACTIVE */
- { "blue", 0 }, /* CWM_COLOR_BORDER_GROUP */
- { "red", 0 }, /* CWM_COLOR_BORDER_UNGROUP */
+static char *color_binds[CWM_COLOR_MAX] = {
+ "#CCCCCC", /* CWM_COLOR_BORDER_ACTIVE */
+ "#666666", /* CWM_COLOR_BORDER_INACTIVE */
+ "blue", /* CWM_COLOR_BORDER_GROUP */
+ "red", /* CWM_COLOR_BORDER_UNGROUP */
};
void
@@ -84,7 +84,7 @@ conf_color(struct conf *c, struct screen_ctx *sc)
int i;
for (i = 0; i < CWM_COLOR_MAX; i++)
- sc->color[i].pixel = xu_getcolor(sc, c->color[i].name);
+ sc->color[i] = xu_getcolor(sc, c->color[i]);
}
static struct {
@@ -184,7 +184,7 @@ conf_init(struct conf *c)
conf_mousebind(c, m_binds[i].key, m_binds[i].func);
for (i = 0; i < nitems(color_binds); i++)
- c->color[i].name = xstrdup(color_binds[i].name);
+ c->color[i] = xstrdup(color_binds[i]);
for (i = 0; i < nitems(menu_color_binds); i++)
c->menucolor[i] = xstrdup(menu_color_binds[i]);
@@ -237,7 +237,7 @@ conf_clear(struct conf *c)
}
for (i = 0; i < CWM_COLOR_MAX; i++)
- free(c->color[i].name);
+ free(c->color[i]);
free(c->font);
}