diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 23:37:00 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 23:37:00 +0000 |
commit | b0e912c8b3d02a518fedda28c3180eb4794a7520 (patch) | |
tree | 07d344862562fab58cbe2df39d13d16f2e4d2bea /k9author/k9avifile.cpp | |
parent | 4d695ec81fe4d4335ee82c7a9346ad9c9e144ecc (diff) | |
download | k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.tar.gz k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.zip |
TQt4 convert k9copy
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1233843 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'k9author/k9avifile.cpp')
-rw-r--r-- | k9author/k9avifile.cpp | 28 |
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); |