summaryrefslogtreecommitdiffstats
path: root/src/conversionoptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversionoptions.h')
-rwxr-xr-xsrc/conversionoptions.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/conversionoptions.h b/src/conversionoptions.h
index b1e9d9a..1f46b54 100755
--- a/src/conversionoptions.h
+++ b/src/conversionoptions.h
@@ -5,7 +5,7 @@
#include "outputdirectory.h"
-#include <qstring.h>
+#include <tqstring.h>
/**
* @short Here the options for the conversion process can be stored
@@ -16,10 +16,10 @@ class ConversionOptions
{
public:
struct EncodingOptions {
- QString sFormat; // output format
- QString sQualityMode; // which mode are we using? quality, bitrate, lossless? i18n()!!!
+ TQString sFormat; // output format
+ TQString sQualityMode; // which mode are we using? quality, bitrate, lossless? i18n()!!!
int iQuality; // the encoding quality / bitrate
- QString sBitrateMode; // when using bitrate mode, which? abr, cbr?
+ TQString sBitrateMode; // when using bitrate mode, which? abr, cbr?
bool bBitrateRange; // enable bitrate range?
int iMinBitrate, iMaxBitrate; // when using bitrate range
struct SamplingRateOptions { // special options, when sampling rate is enabled
@@ -28,17 +28,17 @@ public:
} samplingRate;
struct ChannelsOptions { // special options, when channels is enabled
bool bEnabled;
- QString sChannels;
+ TQString sChannels;
} channels;
struct ReplaygainOptions { // special options, when replaygain is enabled
bool bEnabled;
} replaygain;
- QString sInOutFiles; // could be called 'user defined parameter'
+ TQString sInOutFiles; // could be called 'user defined parameter'
// but it is analog to the in_out_files option in the plugins
};
struct OutputOptions {
OutputDirectory::Mode mode;
- QString directory;
+ TQString directory;
};
/**
@@ -56,8 +56,8 @@ public:
*/
bool nearlyEqual( const ConversionOptions& other );
- QString filePathName; // the path and name of the file
- QString outputFilePathName; // if the user wants to change the output directory/file name per file!
+ TQString filePathName; // the path and name of the file
+ TQString outputFilePathName; // if the user wants to change the output directory/file name per file!
EncodingOptions encodingOptions; // what shall we do with the file?
OutputOptions outputOptions; // where to save the file?
};