summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2011-10-22 15:46:07 +0300
committerVille Skyttä <ville.skytta@iki.fi>2011-10-22 15:46:07 +0300
commitbfa57ea9e0c22a8acd18f35f262aa3e07fb2a617 (patch)
tree9d1a27036e5814b5795cefef4bf089b1c6aed977 /setup.c
parent1e6feea1795118d61f491508fb760d81a0c7ea1d (diff)
downloadvdr-plugin-text2skin-bfa57ea9e0c22a8acd18f35f262aa3e07fb2a617.tar.gz
vdr-plugin-text2skin-bfa57ea9e0c22a8acd18f35f262aa3e07fb2a617.tar.bz2
Convert some uses of assignments to initializer lists in constructors.
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/setup.c b/setup.c
index e49f714..998f8f5 100644
--- a/setup.c
+++ b/setup.c
@@ -4,14 +4,15 @@ cText2SkinSetup Text2SkinSetup;
// --- cText2SkinSetup --------------------------------------------------------
-cText2SkinSetup::cText2SkinSetup(void) {
- MenuScrollbar = false;
- MarqueeLeftRight = true;
- MarqueeReset = false;
- ShowAux = true;
- StripAux = true;
- CheckTimerConflict = false;
- MaxCacheFill = 25;
+cText2SkinSetup::cText2SkinSetup(void):
+ MenuScrollbar(false),
+ MarqueeLeftRight(true),
+ MarqueeReset(false),
+ ShowAux(true),
+ StripAux(true),
+ CheckTimerConflict(false),
+ MaxCacheFill(25)
+{
}
bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {