diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2011-10-22 15:46:07 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2011-10-22 15:46:07 +0300 |
commit | bfa57ea9e0c22a8acd18f35f262aa3e07fb2a617 (patch) | |
tree | 9d1a27036e5814b5795cefef4bf089b1c6aed977 /menu.c | |
parent | 1e6feea1795118d61f491508fb760d81a0c7ea1d (diff) | |
download | vdr-plugin-text2skin-bfa57ea9e0c22a8acd18f35f262aa3e07fb2a617.tar.gz vdr-plugin-text2skin-bfa57ea9e0c22a8acd18f35f262aa3e07fb2a617.tar.bz2 |
Convert some uses of assignments to initializer lists in constructors.
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,8 +3,9 @@ // --- cText2SkinSetupPage ---------------------------------------------------- -cText2SkinSetupPage::cText2SkinSetupPage(void) { - mData = Text2SkinSetup; +cText2SkinSetupPage::cText2SkinSetupPage(void): + mData(Text2SkinSetup) +{ Setup(); } |