Skip to content

Commit 7862c79

Browse files
committed
Remove some unintended debugging print statements.
1 parent e1d3ac8 commit 7862c79

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

mythtv/libs/libmythbase/mythcommandlineparser.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,6 @@ QString CommandLineArg::GetHelpString(int off, QString group, bool force) const
251251
QString pad;
252252
pad.fill(' ', off);
253253

254-
cerr << "adding description for " << GetKeywordString().toLocal8Bit().constData() << endl;
255-
256254
// print the first line with the available keywords
257255
QStringList hlist = m_help.split('\n');
258256
wrapList(hlist, termwidth-off);
@@ -266,8 +264,6 @@ QString CommandLineArg::GetHelpString(int off, QString group, bool force) const
266264
for (i1 = hlist.begin() + 1; i1 != hlist.end(); ++i1)
267265
msg << pad << *i1 << endl;
268266

269-
cerr << " running through " << m_children.count() << " children" << endl;
270-
271267
// loop through any child arguments to print underneath
272268
QList<CommandLineArg*>::const_iterator i2;
273269
for (i2 = m_children.begin(); i2 != m_children.end(); ++i2)

0 commit comments

Comments
 (0)