summaryrefslogtreecommitdiffstats
path: root/src/modules/options/optw_mediatypes.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:06:29 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:06:29 -0600
commit2dd6d32bd821b303aa7b25edda76d1ef7c14b2bf (patch)
tree9cf20f45e85e8192ae89b22807cf1e82e5012cd9 /src/modules/options/optw_mediatypes.cpp
parentf91149819be7e7f45e68f22876f3c0062a11d4b9 (diff)
downloadkvirc-2dd6d32bd821b303aa7b25edda76d1ef7c14b2bf.tar.gz
kvirc-2dd6d32bd821b303aa7b25edda76d1ef7c14b2bf.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/modules/options/optw_mediatypes.cpp')
-rw-r--r--src/modules/options/optw_mediatypes.cpp46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/modules/options/optw_mediatypes.cpp b/src/modules/options/optw_mediatypes.cpp
index b93081e..c4fb694 100644
--- a/src/modules/options/optw_mediatypes.cpp
+++ b/src/modules/options/optw_mediatypes.cpp
@@ -77,72 +77,72 @@ KviMediaTypesOptionsWidget::KviMediaTypesOptionsWidget(TQWidget * parent)
connect(m_pListView,TQT_SIGNAL(currentChanged(KviTalListViewItem *)),this,TQT_SLOT(currentItemChanged(KviTalListViewItem *)));
- tqlayout()->addMultiCellWidget(m_pListView,0,0,0,2);
+ layout()->addMultiCellWidget(m_pListView,0,0,0,2);
TQLabel * l = new TQLabel(__tr2qs_ctx("Description:","options"),this);
- tqlayout()->addWidget(l,1,0);
+ layout()->addWidget(l,1,0);
m_pDescription = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pDescription,1,1,1,2);
+ layout()->addMultiCellWidget(m_pDescription,1,1,1,2);
l = new TQLabel(__tr2qs_ctx("MIME type:","options"),this);
- tqlayout()->addWidget(l,2,0);
+ layout()->addWidget(l,2,0);
m_pIanaType = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pIanaType,2,2,1,2);
+ layout()->addMultiCellWidget(m_pIanaType,2,2,1,2);
l = new TQLabel(__tr2qs_ctx("File pattern:","options"),this);
- tqlayout()->addWidget(l,3,0);
+ layout()->addWidget(l,3,0);
m_pFileMask = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pFileMask,3,3,1,2);
+ layout()->addMultiCellWidget(m_pFileMask,3,3,1,2);
l = new TQLabel(__tr2qs_ctx("Magic bytes:","options"),this);
- tqlayout()->addWidget(l,4,0);
+ layout()->addWidget(l,4,0);
m_pMagicBytes = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pMagicBytes,4,4,1,2);
+ layout()->addMultiCellWidget(m_pMagicBytes,4,4,1,2);
l = new TQLabel(__tr2qs_ctx("Save path:","options"),this);
- tqlayout()->addWidget(l,5,0);
+ layout()->addWidget(l,5,0);
m_pSavePath = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pSavePath,5,5,1,2);
+ layout()->addMultiCellWidget(m_pSavePath,5,5,1,2);
l = new TQLabel(__tr2qs_ctx("Local open command:","options"),this);
- tqlayout()->addWidget(l,6,0);
+ layout()->addWidget(l,6,0);
m_pCommandline = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pCommandline,6,6,1,2);
+ layout()->addMultiCellWidget(m_pCommandline,6,6,1,2);
#ifdef COMPILE_INFO_TIPS
mergeTip(m_pCommandline,__tr2qs_ctx("<center>This field contains the command to execute to open a local file.<br>" \
"<tt>$0</tt> is used in place of the filename</center>","options"));
#endif
l = new TQLabel(__tr2qs_ctx("Remote open command:","options"),this);
- tqlayout()->addWidget(l,7,0);
+ layout()->addWidget(l,7,0);
m_pRemoteExecCommandline = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pRemoteExecCommandline,7,7,1,2);
+ layout()->addMultiCellWidget(m_pRemoteExecCommandline,7,7,1,2);
#ifdef COMPILE_INFO_TIPS
mergeTip(m_pRemoteExecCommandline,__tr2qs_ctx("<center>This field contains the command to execute when automatically opening a received file.<br>" \
"<tt>$0</tt> is used in place of the filename</center>","options"));
#endif
l = new TQLabel(__tr2qs_ctx("Icon","options"),this);
- tqlayout()->addWidget(l,8,0);
+ layout()->addWidget(l,8,0);
m_pIcon = new TQLineEdit(this);
- tqlayout()->addMultiCellWidget(m_pIcon,8,8,1,2);
+ layout()->addMultiCellWidget(m_pIcon,8,8,1,2);
TQFrame * f = new TQFrame(this);
f->setFrameStyle(TQFrame::Sunken | TQFrame::HLine);
- tqlayout()->addMultiCellWidget(f,9,9,0,2);
+ layout()->addMultiCellWidget(f,9,9,0,2);
TQPushButton * b = new TQPushButton(__tr2qs_ctx("&New","options"),this);
connect(b,TQT_SIGNAL(clicked()),this,TQT_SLOT(newMediaType()));
- tqlayout()->addWidget(b,10,1);
+ layout()->addWidget(b,10,1);
m_pDelete = new TQPushButton(__tr2qs_ctx("Re&move","options"),this);
connect(m_pDelete,TQT_SIGNAL(clicked()),this,TQT_SLOT(delMediaType()));
- tqlayout()->addWidget(m_pDelete,10,2);
+ layout()->addWidget(m_pDelete,10,2);
- tqlayout()->setColStretch(1,1);
- tqlayout()->setColStretch(2,1);
- tqlayout()->setRowStretch(0,1);
+ layout()->setColStretch(1,1);
+ layout()->setColStretch(2,1);
+ layout()->setRowStretch(0,1);
m_pLastItem = 0;