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 /src/k9prefmpeg4.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 'src/k9prefmpeg4.cpp')
-rw-r--r-- | src/k9prefmpeg4.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/k9prefmpeg4.cpp b/src/k9prefmpeg4.cpp index db752bb..b61d40d 100644 --- a/src/k9prefmpeg4.cpp +++ b/src/k9prefmpeg4.cpp @@ -13,16 +13,16 @@ #include "k9common.h" #include "k9prefmpeg4.h" #include "k9config.h" -#include <qcombobox.h> -#include <qspinbox.h> -#include <qcheckbox.h> -#include <qlineedit.h> -#include <qstringlist.h> +#include <tqcombobox.h> +#include <tqspinbox.h> +#include <tqcheckbox.h> +#include <tqlineedit.h> +#include <tqstringlist.h> #include <klocale.h> -#include <qradiobutton.h> +#include <tqradiobutton.h> -k9prefMPEG4::k9prefMPEG4(QWidget* parent, const char* name, WFlags fl) -: prefMPEG4(parent,name,fl) +k9prefMPEG4::k9prefMPEG4(TQWidget* tqparent, const char* name, WFlags fl) +: prefMPEG4(tqparent,name,fl) { load(); } @@ -46,8 +46,8 @@ void k9prefMPEG4::load() { leMp4AudioBitrate->setText(config.getPrefMp4AudioBitrate()); leMp4VideoBitrate->setText(config.getPrefMp4VideoBitrate()); - QStringList m_codecLabels=config.getCodecLabels(); - QStringList m_codecLabelsAudio=config.getCodecLabelsAudio(); + TQStringList m_codecLabels=config.getCodecLabels(); + TQStringList m_codecLabelsAudio=config.getCodecLabelsAudio(); cbMp4Codec->clear(); cbMp4Codec->insertStringList(m_codecLabels); |