blob: 5c6e5866b6a9065760d0d861e96ff048da2d1c1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* config.c: Global configuration and user settings
*
* See the README file for copyright information and how to reach the author.
*
*/
#include "config.h"
/* Global instance */
cEpgfixerSetup EpgfixerSetup;
cEpgfixerSetup::cEpgfixerSetup()
{
quotedshorttext = 0;
blankbeforedescription = 0;
repeatedtitle = 0;
doublequotedshorttext = 0;
removeformatting = 0;
longshorttext = 0;
equalshorttextanddescription = 0;
nobackticks = 0;
components = 0;
striphtml = 0;
}
|