From ce623af5ae84553ae8c399825e451369e8c514be Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Sat, 15 Apr 2017 19:24:11 +0300 Subject: [PATCH] Remove unused verbosity variable --- config.def.h | 1 - src/dunst.h | 1 - src/settings.h | 1 - 3 files changed, 3 deletions(-) diff --git a/config.def.h b/config.def.h index 5ed672a..5edd53b 100644 --- a/config.def.h +++ b/config.def.h @@ -27,7 +27,6 @@ float bounce_freq = 1; /* determines the bounce frequency (if activated int sticky_history = true; int history_length = 20; /* max amount of notifications kept in history */ int show_indicators = true; -int verbosity = 0; int word_wrap = false; int ignore_newline = false; int line_height = 0; /* if line height < font height, it will be raised to font height */ diff --git a/src/dunst.h b/src/dunst.h index 5e65080..abc1c1f 100644 --- a/src/dunst.h +++ b/src/dunst.h @@ -18,7 +18,6 @@ #define ColFG 1 #define ColBG 0 -extern int verbosity; extern GQueue *queue; extern GQueue *displayed; extern GQueue *history; diff --git a/src/settings.h b/src/settings.h index f2d2c93..a4be2f9 100644 --- a/src/settings.h +++ b/src/settings.h @@ -45,7 +45,6 @@ typedef struct _settings { int sticky_history; int history_length; int show_indicators; - int verbosity; int word_wrap; int ignore_newline; int line_height;