radiotext_window: remove trailing colon from header

Origin commit data
------------------
Commit: 58139a678b
Author: vanhofen <vanhofen@gmx.de>
Date: 2020-01-05 (Sun, 05 Jan 2020)

Origin message was:
------------------
- radiotext_window: remove trailing colon from header
This commit is contained in:
vanhofen
2020-01-05 22:22:22 +01:00
parent 24aca321cc
commit 54877b7e3c

View File

@@ -161,7 +161,7 @@ bool CRadioTextGUI::GetData()
{
if (lines || g_Radiotext->RT_PTY != 0)
{
snprintf(stext[0], sizeof(stext[0]),g_Radiotext->RT_PTY == 0 ? "%s %s%s" : "%s (%s)%s", tr("Radiotext"), g_Radiotext->RT_PTY == 0 ? g_Radiotext->RDS_PTYN : g_Radiotext->ptynr2string(g_Radiotext->RT_PTY), ":");
snprintf(stext[0], sizeof(stext[0]),g_Radiotext->RT_PTY == 0 ? "%s %s" : "%s (%s)", tr("Radiotext"), g_Radiotext->RT_PTY == 0 ? g_Radiotext->RDS_PTYN : g_Radiotext->ptynr2string(g_Radiotext->RT_PTY));
if (!isDubLine(v_lines_title, stext[0]))
addLine(v_lines_title, stext[0]);
}