summaryrefslogtreecommitdiffstats
path: root/plugins/recording/encoder_ogg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:33:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:33:05 +0900
commite470a86df30e2a0c0d3ea8c4f67112795071617a (patch)
treebcf3607d616a123c422ff350a571f2fc520b9fa4 /plugins/recording/encoder_ogg.cpp
parent61d238685716eb5670f82dacf20fb2b6c8919822 (diff)
downloadtderadio-e470a86df30e2a0c0d3ea8c4f67112795071617a.tar.gz
tderadio-e470a86df30e2a0c0d3ea8c4f67112795071617a.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'plugins/recording/encoder_ogg.cpp')
-rw-r--r--plugins/recording/encoder_ogg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/recording/encoder_ogg.cpp b/plugins/recording/encoder_ogg.cpp
index ca093b9..d1088b1 100644
--- a/plugins/recording/encoder_ogg.cpp
+++ b/plugins/recording/encoder_ogg.cpp
@@ -176,7 +176,7 @@ bool RecordingEncodingOgg::openOutput(const TQString &output)
vorbis_comment_init (&vc);
vorbis_comment_add_tag_new(&vc, "creator", "TDERadio" VERSION);
vorbis_comment_add_tag_new(&vc, "title", m_RadioStation->longName().utf8());
- vorbis_comment_add_tag_new(&vc, "date", TQDateTime::currentDateTime().toString(Qt::ISODate));
+ vorbis_comment_add_tag_new(&vc, "date", TQDateTime::currentDateTime().toString(TQt::ISODate));
vorbis_analysis_headerout(&m_VorbisDSP, &vc,
&header_main, &header_comments, &header_codebooks);