diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-26 15:58:36 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-26 15:58:36 +0200 |
commit | 4d28c73fa099c510a546f4b9861eb67ccc49a373 (patch) | |
tree | 25d87ad6e04c253a3ba1890b15121c75167f6a2e /common.c | |
parent | f7ee4433451bba9e9cfcf916293ca10bbd7ea9d3 (diff) | |
download | vdr-plugin-text2skin-4d28c73fa099c510a546f4b9861eb67ccc49a373.tar.gz vdr-plugin-text2skin-4d28c73fa099c510a546f4b9861eb67ccc49a373.tar.bz2 |
Minor notation correction.
Diffstat (limited to 'common.c')
-rw-r--r-- | common.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -272,7 +272,7 @@ std::string AddExtInfoToDescription(const char *Title, const char *ShortText, co buf << " - " << r->event->Title(); if (!isempty(r->event->ShortText())) buf << "~" << r->event->ShortText(); - desc << FitToWidth(buf, (Text2SkinSetup.MaxChars)) << "\n"; + desc << FitToWidth(buf, Text2SkinSetup.MaxChars) << "\n"; } delete list; } @@ -295,7 +295,7 @@ std::string AddExtInfoToDescription(const char *Title, const char *ShortText, co desc << tr("AUXILIARY INFOS") << ":\n"; std::stringstream buf; buf << " - " << tr("Search timer") << ": " << searchTimer; - desc << FitToWidth(buf, (Text2SkinSetup.MaxChars)) << "\n"; + desc << FitToWidth(buf, Text2SkinSetup.MaxChars) << "\n"; } } } |