aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-01-23 18:47:15 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-01-23 18:47:15 +0000
commitc154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5 (patch)
tree45a05af6a9ca813edb16810bfbd7f0cf1276cc23 /src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
parent06552c3c142f2c1bebb7d8f54a743bc08963cc25 (diff)
downloadqmmp-c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5.tar.gz
qmmp-c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5.tar.bz2
qmmp-c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5.zip
fixed '--help' output
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2561 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/CommandLineOptions/SeekOption/seekoption.cpp')
-rw-r--r--src/plugins/CommandLineOptions/SeekOption/seekoption.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp b/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
index e8dbacd30..59382bdea 100644
--- a/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
+++ b/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
@@ -35,9 +35,9 @@ bool SeekOption::identify(const QString &str) const
const QString SeekOption::helpString() const
{
QString help;
- help += QString("--seek <time> ") + tr("Seek to position in the current track") + "\n";
- help += QString("--seek-fwd <time> ") + tr("Seek forward") + "\n";
- help += QString("--seek-bwd <time> ") + tr("Seek backwards") + "\n";
+ help += QString("--seek <time> ") + tr("Seek to position in the current track") + "\n";
+ help += QString("--seek-fwd <time> ") + tr("Seek forward") + "\n";
+ help += QString("--seek-bwd <time> ") + tr("Seek backwards") + "\n";
return help;
}