aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-01-25 18:40:41 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-01-25 18:40:41 +0000
commite986c6e5d79828c544d54fd505f57247c04f5bd4 (patch)
tree165ccc37f7206d03db46bdf68e9409fe4a30b0b9 /src
parentb1470c4a3eaa8ce7eb4b33e7c9e4a421a404795a (diff)
downloadqmmp-e986c6e5d79828c544d54fd505f57247c04f5bd4.tar.gz
qmmp-e986c6e5d79828c544d54fd505f57247c04f5bd4.tar.bz2
qmmp-e986c6e5d79828c544d54fd505f57247c04f5bd4.zip
removed useless code
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7010 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/plugins/Input/cue/decodercuefactory.cpp4
-rw-r--r--src/qmmp/decoderfactory.h4
2 files changed, 2 insertions, 6 deletions
diff --git a/src/plugins/Input/cue/decodercuefactory.cpp b/src/plugins/Input/cue/decodercuefactory.cpp
index de766d622..fe2fd0c41 100644
--- a/src/plugins/Input/cue/decodercuefactory.cpp
+++ b/src/plugins/Input/cue/decodercuefactory.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2016 by Ilya Kotov *
+ * Copyright (C) 2008-2017 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -42,12 +42,10 @@ const DecoderProperties DecoderCUEFactory::properties() const
properties.shortName = "cue";
properties.filters << "*.cue";
properties.description = tr("CUE Files");
- //properties.contentType = "application/ogg;audio/x-vorbis+ogg";
properties.protocols << "cue";
properties.hasAbout = true;
properties.hasSettings = true;
properties.noInput = true;
- properties.noOutput = true;
return properties;
}
diff --git a/src/qmmp/decoderfactory.h b/src/qmmp/decoderfactory.h
index eef76219c..5205b524c 100644
--- a/src/qmmp/decoderfactory.h
+++ b/src/qmmp/decoderfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006-2016 by Ilya Kotov *
+ * Copyright (C) 2006-2017 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -47,7 +47,6 @@ public:
hasAbout = false;
hasSettings = false;
noInput = false;
- noOutput = false;
priority = 0;
}
QString name; /*!< Input plugin full name */
@@ -60,7 +59,6 @@ public:
bool hasAbout; /*!< Should be \b true if plugin has about dialog, otherwise \b false */
bool hasSettings; /*!< Should be \b true if plugin has settings dialog, otherwise \b false */
bool noInput; /*!< Should be \b true if plugin has own input, otherwise \b false */
- bool noOutput; /*!< Should be \b true if plugin has own output, otherwise \b false */
int priority; /*!< Decoder priority. Decoders with lowest value will be used first */
};
/*! @brief Input plugin interface (decoder factory).