From 450695762f4577900fff6687ce149bd61e097515 Mon Sep 17 00:00:00 2001 From: Sascha Kruse Date: Fri, 9 Sep 2011 19:47:45 +0200 Subject: [PATCH] removed unused variables --- dunst.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dunst.c b/dunst.c index 3a09b03..d34fc60 100644 --- a/dunst.c +++ b/dunst.c @@ -35,10 +35,7 @@ static int lines = 0; static const char *font = NULL; static const char *normbgcolor = "#cccccc"; static const char *normfgcolor = "#000000"; -static const char *selbgcolor = "#0066ff"; -static const char *selfgcolor = "#ffffff"; static unsigned long normcol[ColLast]; -static unsigned long selcol[ColLast]; static Atom utf8; static Bool topbar = True; static DC *dc; @@ -217,8 +214,6 @@ setup(void) { normcol[ColBG] = getcolor(dc, normbgcolor); normcol[ColFG] = getcolor(dc, normfgcolor); - selcol[ColBG] = getcolor(dc, selbgcolor); - selcol[ColFG] = getcolor(dc, selfgcolor); utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);