summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/voicefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/voicefile.h')
-rw-r--r--rbutil/rbutilqt/voicefile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/voicefile.h b/rbutil/rbutilqt/voicefile.h
index b82f0373c7..ce7c953237 100644
--- a/rbutil/rbutilqt/voicefile.h
+++ b/rbutil/rbutilqt/voicefile.h
@@ -44,12 +44,12 @@ public:
44 bool createVoiceFile(ProgressloggerInterface* logger); 44 bool createVoiceFile(ProgressloggerInterface* logger);
45 45
46 // set infos 46 // set infos
47 void setUserSettings(QSettings* setting) { userSettings = setting;} 47 void setSettings(QSettings* uSettings,QSettings* dSettings) { userSettings = uSettings;deviceSettings = dSettings;}
48 void setDeviceSettings(QSettings* setting) { deviceSettings = setting;}
49 48
50 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; } 49 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
51 void setTargetId(int id){m_targetid = id;} 50 void setTargetId(int id){m_targetid = id;}
52 void setLang(QString name){m_lang =name;} 51 void setLang(QString name){m_lang =name;}
52 void setWavtrimThreshold(int th){m_wavtrimThreshold = th;}
53 void setProxy(QUrl proxy){m_proxy = proxy;} 53 void setProxy(QUrl proxy){m_proxy = proxy;}
54 54
55private slots: 55private slots:
@@ -75,6 +75,7 @@ private:
75 QString m_path; //path where the wav and mp3 files are stored to 75 QString m_path; //path where the wav and mp3 files are stored to
76 int m_targetid; //the target id 76 int m_targetid; //the target id
77 QString m_lang; // the language which will be spoken 77 QString m_lang; // the language which will be spoken
78 int m_wavtrimThreshold;
78 79
79 ProgressloggerInterface* m_logger; 80 ProgressloggerInterface* m_logger;
80 81