summaryrefslogtreecommitdiff
path: root/src/discname.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2015-04-25 16:17:41 +0200
committerMateusz Łukasik <mati75@linuxmint.pl>2015-04-25 16:17:41 +0200
commit45ee5ac6dc2159352596ce8e8ec744e0c864d492 (patch)
tree55ca90fd4a0d5c0eae188c5919510b6b0d2e3c5d /src/discname.cpp
parenta35c74c509f107094fd81cee8df109b652063969 (diff)
Imported Upstream version 14.9.0.6690~ds0
Diffstat (limited to 'src/discname.cpp')
-rw-r--r--src/discname.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/discname.cpp b/src/discname.cpp
index 6930c52..4d94a98 100644
--- a/src/discname.cpp
+++ b/src/discname.cpp
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net>
+ Copyright (C) 2006-2015 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@ QString DiscName::joinDVD(int title, const QString & device, bool use_dvdnav) {
QString DiscName::join(const DiscData & d) {
QString s = d.protocol + "://";
- if (d.title > 0) s += QString::number(d.title);
+ /* if (d.title > 0) */ s += QString::number(d.title);
if (!d.device.isEmpty()) s+= "/" + removeTrailingSlash(d.device);
qDebug("DiscName::join: result: '%s'", s.toUtf8().constData());