summaryrefslogtreecommitdiffstats
path: root/k9author/k9avifile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'k9author/k9avifile.cpp')
-rw-r--r--k9author/k9avifile.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/k9author/k9avifile.cpp b/k9author/k9avifile.cpp
index 1ace5f6..0e9bf76 100644
--- a/k9author/k9avifile.cpp
+++ b/k9author/k9avifile.cpp
@@ -13,11 +13,11 @@
#include "k9avifile.h"
#include "k9title.h"
-k9AviFile::k9AviFile(k9Title *parent, const char *name)
- : QObject(parent, name)
+k9AviFile::k9AviFile(k9Title *tqparent, const char *name)
+ : TQObject(tqparent, name)
{
- m_num=parent->getFiles()->count();
- setTitle(parent);
+ m_num=tqparent->getFiles()->count();
+ setTitle(tqparent);
m_previous=NULL;
m_next=NULL;
m_breakNext=false;
@@ -33,52 +33,52 @@ k9AviFile::~k9AviFile()
#include "k9avifile.moc"
-QString k9AviFile::getFileName() const
+TQString k9AviFile::getFileName() const
{
return m_fileName;
}
-void k9AviFile::setFileName ( const QString& _value )
+void k9AviFile::setFileName ( const TQString& _value )
{
m_fileName = _value;
emit aviFileUpdated (this);
}
-QTime k9AviFile::getStart() const
+TQTime k9AviFile::getStart() const
{
return m_start;
}
-void k9AviFile::setStart ( const QTime& _value )
+void k9AviFile::setStart ( const TQTime& _value )
{
m_start = _value;
emit aviFileUpdated (this);
}
-QTime k9AviFile::getEnd() const
+TQTime k9AviFile::getEnd() const
{
return m_end;
}
-void k9AviFile::setEnd ( const QTime& _value )
+void k9AviFile::setEnd ( const TQTime& _value )
{
m_end = _value;
emit aviFileUpdated (this);
}
-QString k9AviFile::getLabel() const
+TQString k9AviFile::getLabel() const
{
return m_label;
}
-void k9AviFile::setLabel ( const QString& _value )
+void k9AviFile::setLabel ( const TQString& _value )
{
m_label = _value;
emit aviFileUpdated (this);
@@ -173,12 +173,12 @@ bool k9AviFile::getBreakNext() {
-QImage k9AviFile::getImage() const {
+TQImage k9AviFile::getImage() const {
return m_image;
}
-void k9AviFile::setImage(const QImage& _value) {
+void k9AviFile::setImage(const TQImage& _value) {
m_image = _value;
emit aviFileUpdated (this);
emit imageChanged(_value);