summaryrefslogtreecommitdiffstats
path: root/kmailcvt
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
commitf4fae92b6768541e2952173c3d4b09040f95bf7e (patch)
treed8c5d93232235cd635f3310b4d95490df181ba2d /kmailcvt
parent125c0a08265b75a133644d3b55f47e37c919f45d (diff)
downloadtdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz
tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmailcvt')
-rw-r--r--kmailcvt/filter_evolution.cxx6
-rw-r--r--kmailcvt/filter_evolution_v2.cxx10
-rw-r--r--kmailcvt/filter_mbox.cxx2
-rw-r--r--kmailcvt/filter_oe.cxx42
-rw-r--r--kmailcvt/filter_pmail.cxx14
-rw-r--r--kmailcvt/filter_pmail.hxx6
-rw-r--r--kmailcvt/filter_sylpheed.cxx8
-rw-r--r--kmailcvt/filter_thebat.cxx2
-rw-r--r--kmailcvt/filter_thunderbird.cxx10
-rw-r--r--kmailcvt/filters.cxx4
-rw-r--r--kmailcvt/filters.hxx2
-rw-r--r--kmailcvt/kimportpagedlg.ui16
-rw-r--r--kmailcvt/kmailcvt.cpp4
-rw-r--r--kmailcvt/kselfilterpagedlg.ui12
14 files changed, 69 insertions, 69 deletions
diff --git a/kmailcvt/filter_evolution.cxx b/kmailcvt/filter_evolution.cxx
index a07a6f084..121171af6 100644
--- a/kmailcvt/filter_evolution.cxx
+++ b/kmailcvt/filter_evolution.cxx
@@ -128,14 +128,14 @@ void FilterEvolution::importMBox(FilterInfo *info, const TQString& mboxName, con
info->setCurrent(0);
if( mboxName.length() > 20 ) {
TQString tmp_info = mboxName;
- tmp_info = tmp_info.replace( mailDir, ".." );
- if (tmp_info.contains("subfolders/"))
+ tmp_info = tmp_info.tqreplace( mailDir, ".." );
+ if (tmp_info.tqcontains("subfolders/"))
tmp_info.remove("subfolders/");
info->setFrom( tmp_info );
tmp_from = tmp_info;
} else
info->setFrom(mboxName);
- if(targetDir.contains("subfolders/")) {
+ if(targetDir.tqcontains("subfolders/")) {
TQString tmp_info = targetDir;
tmp_info.remove("subfolders/");
info->setTo(tmp_info);
diff --git a/kmailcvt/filter_evolution_v2.cxx b/kmailcvt/filter_evolution_v2.cxx
index dd69ee7b5..959a4b468 100644
--- a/kmailcvt/filter_evolution_v2.cxx
+++ b/kmailcvt/filter_evolution_v2.cxx
@@ -164,13 +164,13 @@ void FilterEvolution_v2::importMBox(FilterInfo *info, const TQString& mboxName,
info->setCurrent(0);
if( mboxName.length() > 20 ) {
TQString tmp_info = mboxName;
- tmp_info = tmp_info.replace( mailDir, "../" );
- if (tmp_info.contains(".sbd"))
+ tmp_info = tmp_info.tqreplace( mailDir, "../" );
+ if (tmp_info.tqcontains(".sbd"))
tmp_info.remove(".sbd");
info->setFrom( tmp_info );
} else
info->setFrom(mboxName);
- if(targetDir.contains(".sbd")) {
+ if(targetDir.tqcontains(".sbd")) {
TQString tmp_info = targetDir;
tmp_info.remove(".sbd");
info->setTo(tmp_info);
@@ -206,12 +206,12 @@ void FilterEvolution_v2::importMBox(FilterInfo *info, const TQString& mboxName,
TQString destFolder;
TQString _targetDir = targetDir;
if(!targetDir.isNull()) {
- if(_targetDir.contains(".sbd"))
+ if(_targetDir.tqcontains(".sbd"))
_targetDir.remove(".sbd");
destFolder += "Evolution-Import/" + _targetDir + "/" + filenameInfo.baseName(TRUE); // mboxName;
} else {
destFolder = "Evolution-Import/" + rootDir;
- if(destFolder.contains(".sbd"))
+ if(destFolder.tqcontains(".sbd"))
destFolder.remove(".sbd");
}
diff --git a/kmailcvt/filter_mbox.cxx b/kmailcvt/filter_mbox.cxx
index 76b376683..61f313391 100644
--- a/kmailcvt/filter_mbox.cxx
+++ b/kmailcvt/filter_mbox.cxx
@@ -98,7 +98,7 @@ void FilterMBox::import(FilterInfo *info)
// qDebug("x_status_flag: %s", x_status_flag.latin1() );
}
- // workaround to fix hang if a corrupted mbox contains some
+ // workaround to fix hang if a corrupted mbox tqcontains some
// binary data, for more see bug #106796
if (mbox.at() == filepos)
mbox.at(mbox.size());
diff --git a/kmailcvt/filter_oe.cxx b/kmailcvt/filter_oe.cxx
index bde399b62..c60eced67 100644
--- a/kmailcvt/filter_oe.cxx
+++ b/kmailcvt/filter_oe.cxx
@@ -123,7 +123,7 @@ void FilterOE::importMailBox( FilterInfo *info, const TQString& fileName)
mailbox.setByteOrder(TQDataStream::LittleEndian);
// Parse magic
- Q_UINT32 sig_block1, sig_block2;
+ TQ_UINT32 sig_block1, sig_block2;
mailbox >> sig_block1 >> sig_block2;
if (sig_block1 == OE4_SIG_1 && sig_block2 == OE4_SIG_2) {
folderName = "OE-Import/" + mailfileinfo.baseName(TRUE);
@@ -132,7 +132,7 @@ void FilterOE::importMailBox( FilterInfo *info, const TQString& fileName)
mbxImport(info, mailbox);
return;
} else {
- Q_UINT32 sig_block3, sig_block4;
+ TQ_UINT32 sig_block3, sig_block4;
mailbox >> sig_block3 >> sig_block4;
if (sig_block1 == OE5_SIG_1 && sig_block3 == OE5_SIG_3 && sig_block4 == OE5_SIG_4) {
if (sig_block2 == OE5_EMAIL_SIG_2) {
@@ -163,7 +163,7 @@ void FilterOE::importMailBox( FilterInfo *info, const TQString& fileName)
void FilterOE::mbxImport( FilterInfo *info, TQDataStream& ds)
{
- Q_UINT32 msgCount, lastMsgNum, fileSize;
+ TQ_UINT32 msgCount, lastMsgNum, fileSize;
// Read the header
ds >> msgCount >> lastMsgNum >> fileSize;
@@ -172,11 +172,11 @@ void FilterOE::mbxImport( FilterInfo *info, TQDataStream& ds)
if (msgCount == 0)
return; // Don't import empty mailbox
- Q_UINT32 msgMagic;
+ TQ_UINT32 msgMagic;
ds >> msgMagic; // Read first magic
while (!ds.atEnd()) {
- Q_UINT32 msgNumber, msgSize, msgTextSize;
+ TQ_UINT32 msgNumber, msgSize, msgTextSize;
KTempFile tmp;
tmp.dataStream()->setByteOrder(TQDataStream::LittleEndian);
@@ -211,7 +211,7 @@ void FilterOE::mbxImport( FilterInfo *info, TQDataStream& ds)
void FilterOE::dbxImport( FilterInfo *info, TQDataStream& ds)
{
// Get item count & offset of index
- Q_UINT32 itemCount, indexPtr;
+ TQ_UINT32 itemCount, indexPtr;
ds.device()->at(0xc4);
ds >> itemCount;
ds.device()->at(0xe4);
@@ -231,9 +231,9 @@ void FilterOE::dbxReadIndex( FilterInfo *info, TQDataStream& ds, int filePos)
{
if(info->shouldTerminate()) return;
- Q_UINT32 self, unknown, nextIndexPtr, parent, indexCount;
- Q_UINT8 unknown2, ptrCount;
- Q_UINT16 unknown3;
+ TQ_UINT32 self, unknown, nextIndexPtr, parent, indexCount;
+ TQ_UINT8 unknown2, ptrCount;
+ TQ_UINT16 unknown3;
int wasAt = ds.device()->at();
ds.device()->at(filePos);
@@ -244,7 +244,7 @@ void FilterOE::dbxReadIndex( FilterInfo *info, TQDataStream& ds, int filePos)
kdDebug() << "This index has " << (int) ptrCount << " data pointers" << endl;
for (int count = 0; count < ptrCount; count++) {
if(info->shouldTerminate()) return;
- Q_UINT32 dataIndexPtr, anotherIndexPtr, anotherIndexCount; // _dbx_indexstruct
+ TQ_UINT32 dataIndexPtr, anotherIndexPtr, anotherIndexCount; // _dbx_indexstruct
ds >> dataIndexPtr >> anotherIndexPtr >> anotherIndexCount;
if (anotherIndexCount > 0) {
@@ -265,9 +265,9 @@ void FilterOE::dbxReadIndex( FilterInfo *info, TQDataStream& ds, int filePos)
void FilterOE::dbxReadDataBlock( FilterInfo *info, TQDataStream& ds, int filePos)
{
- Q_UINT32 curOffset, blockSize;
- Q_UINT16 unknown;
- Q_UINT8 count, unknown2;
+ TQ_UINT32 curOffset, blockSize;
+ TQ_UINT16 unknown;
+ TQ_UINT8 count, unknown2;
int wasAt = ds.device()->at();
TQString folderEntry[4];
@@ -279,8 +279,8 @@ void FilterOE::dbxReadDataBlock( FilterInfo *info, TQDataStream& ds, int filePos
for (int c = 0; c < count; c++) {
if(info->shouldTerminate()) return;
- Q_UINT8 type; // _dbx_email_pointerstruct
- Q_UINT32 value; // Actually 24 bit
+ TQ_UINT8 type; // _dbx_email_pointerstruct
+ TQ_UINT32 value; // Actually 24 bit
ds >> type >> value;
value &= 0xffffff;
@@ -294,7 +294,7 @@ void FilterOE::dbxReadDataBlock( FilterInfo *info, TQDataStream& ds, int filePos
} else if( type == 0x04) {
int currentFilePos = ds.device()->at();
ds.device()->at(filePos + 12 + value + (count*4) );
- Q_UINT32 newOFF;
+ TQ_UINT32 newOFF;
ds >> newOFF;
kdDebug() << "**** Offset of emaildata (0x04) " << newOFF << endl;
ds.device()->at(currentFilePos);
@@ -330,9 +330,9 @@ void FilterOE::dbxReadDataBlock( FilterInfo *info, TQDataStream& ds, int filePos
void FilterOE::dbxReadEmail( FilterInfo *info, TQDataStream& ds, int filePos)
{
if(info->shouldTerminate()) return;
- Q_UINT32 self, nextAddressOffset, nextAddress=0;
- Q_UINT16 blockSize;
- Q_UINT8 intCount, unknown;
+ TQ_UINT32 self, nextAddressOffset, nextAddress=0;
+ TQ_UINT16 blockSize;
+ TQ_UINT8 intCount, unknown;
KTempFile tmp;
bool _break = false;
int wasAt = ds.device()->at();
@@ -404,7 +404,7 @@ TQString FilterOE::getFolderName(TQString filename)
TQString _tmpFileName = tmp[1];
_tmpFileName = _tmpFileName.lower();
if(_tmpFileName == search) {
- folder.prepend( tmp[0] + TQString::fromLatin1("/") );
+ folder.prepend( tmp[0] + TQString::tqfromLatin1("/") );
search = tmp[3];
foundFilename = true;
}
@@ -416,7 +416,7 @@ TQString FilterOE::getFolderName(TQString filename)
found = true;
break;
} else {
- folder.prepend( tmp[0] + TQString::fromLatin1("/") );
+ folder.prepend( tmp[0] + TQString::tqfromLatin1("/") );
search = tmp[3];
}
}
diff --git a/kmailcvt/filter_pmail.cxx b/kmailcvt/filter_pmail.cxx
index 23617f912..126a6365a 100644
--- a/kmailcvt/filter_pmail.cxx
+++ b/kmailcvt/filter_pmail.cxx
@@ -81,13 +81,13 @@ void FilterPMail::import(FilterInfo *info)
info->setOverall(100);
}
-/** this looks for all files with the filemask 'mask' and calls the 'workFunc' on each of them */
-void FilterPMail::processFiles(const TQString& mask, void(FilterPMail::* workFunc)(const TQString&) )
+/** this looks for all files with the filetqmask 'tqmask' and calls the 'workFunc' on each of them */
+void FilterPMail::processFiles(const TQString& tqmask, void(FilterPMail::* workFunc)(const TQString&) )
{
if (inf->shouldTerminate()) return;
- TQStringList files = dir.entryList(mask, TQDir::Files, TQDir::Name);
- //kdDebug() << "Mask is " << mask << " count is " << files.count() << endl;
+ TQStringList files = dir.entryList(tqmask, TQDir::Files, TQDir::Name);
+ //kdDebug() << "Mask is " << tqmask << " count is " << files.count() << endl;
for ( TQStringList::Iterator mailFile = files.begin(); mailFile != files.end(); ++mailFile ) {
// Notify current file
TQFileInfo mailfileinfo(*mailFile);
@@ -186,7 +186,7 @@ void FilterPMail::importMailFolder(const TQString& file)
f.at(f.at() - l + 1);
}
- // no problem to loose the last line in file. This only contains a seperate char
+ // no problem to loose the last line in file. This only tqcontains a seperate char
while ( ! f.atEnd() && (l = f.readLine(input.data(),MAX_LINE))) {
if (inf->shouldTerminate()){
tempfile.close();
@@ -228,8 +228,8 @@ void FilterPMail::importUnixMailFolder(const TQString& file)
int n = 0, l = 0;
/** Get the folder name */
- s.replace( TQRegExp("mbx$"), "pmg");
- s.replace( TQRegExp("MBX$"), "PMG");
+ s.tqreplace( TQRegExp("mbx$"), "pmg");
+ s.tqreplace( TQRegExp("MBX$"), "PMG");
f.setName(s);
if (! f.open( IO_ReadOnly ) ) {
inf->alert( i18n("Unable to open %1, skipping").arg( s ) );
diff --git a/kmailcvt/filter_pmail.hxx b/kmailcvt/filter_pmail.hxx
index 664fdcc1b..d3ac1e60a 100644
--- a/kmailcvt/filter_pmail.hxx
+++ b/kmailcvt/filter_pmail.hxx
@@ -32,8 +32,8 @@ public:
void import(FilterInfo *info);
protected:
- /** this looks for all files with the filemask 'mask' and calls the 'workFunc' on each of them */
- void processFiles(const TQString& mask, void(FilterPMail::* workFunc)(const TQString&) );
+ /** this looks for all files with the filetqmask 'tqmask' and calls the 'workFunc' on each of them */
+ void processFiles(const TQString& tqmask, void(FilterPMail::* workFunc)(const TQString&) );
/** this function imports one *.CNM message */
void importNewMessage(const TQString& file);
/** this function imports one mail folder file (*.PMM) */
@@ -53,7 +53,7 @@ private:
/** Folder structure here has 5 entries. */
typedef FolderStructureBase<5> FolderStructure;
- /** List with the folder matrix, which contains following strings:
+ /** List with the folder matrix, which tqcontains following strings:
1. type (2 for root-folder, 1 for folder, 0 for mailarchiv)
2. type (1 for root-folder, 3 for folder, 0 for mailarchiv)
3. "ID:flag:filename" of folder/archiv
diff --git a/kmailcvt/filter_sylpheed.cxx b/kmailcvt/filter_sylpheed.cxx
index 489083f04..63345f01b 100644
--- a/kmailcvt/filter_sylpheed.cxx
+++ b/kmailcvt/filter_sylpheed.cxx
@@ -166,8 +166,8 @@ void FilterSylpheed::importFiles( FilterInfo *info, const TQString& dirName)
void FilterSylpheed::readMarkFile( FilterInfo *info, const TQString &path, TQDict<unsigned long> &dict )
{
- /* Each sylpheed mail directory contains a .sylpheed_mark file which
- * contains all the flags for each messages. The layout of this file
+ /* Each sylpheed mail directory tqcontains a .sylpheed_mark file which
+ * tqcontains all the flags for each messages. The tqlayout of this file
* is documented in the source code of sylpheed: in procmsg.h for
* the flag bits, and procmsg.c.
*
@@ -179,7 +179,7 @@ void FilterSylpheed::readMarkFile( FilterInfo *info, const TQString &path, TQDic
* the first one with the message file name (which is a number),
* and the second one with the actual message flags */
- Q_UINT32 in, flags;
+ TQ_UINT32 in, flags;
TQFile file(path);
if (!file.open(IO_ReadOnly))
@@ -196,7 +196,7 @@ void FilterSylpheed::readMarkFile( FilterInfo *info, const TQString &path, TQDic
* at a file created on another platform. I don't have any test
* marks/folders, so just ignoring this case */
stream >> in;
- if (in > (Q_UINT32) 0xffff)
+ if (in > (TQ_UINT32) 0xffff)
return;
while (!stream.atEnd()) {
diff --git a/kmailcvt/filter_thebat.cxx b/kmailcvt/filter_thebat.cxx
index de6e5c6b3..98d23cb66 100644
--- a/kmailcvt/filter_thebat.cxx
+++ b/kmailcvt/filter_thebat.cxx
@@ -169,7 +169,7 @@ void FilterTheBat::importFiles( FilterInfo *info, const TQString& FileName)
if (tbb.atEnd())
break;
- iFound = _tmp.contains(regexp);
+ iFound = _tmp.tqcontains(regexp);
if(!iFound) {
iFound = _tmp.findRev("!");
if (iFound >= 0 && ((l-iFound) < 5) ) {
diff --git a/kmailcvt/filter_thunderbird.cxx b/kmailcvt/filter_thunderbird.cxx
index 6ada68098..c6f3cd098 100644
--- a/kmailcvt/filter_thunderbird.cxx
+++ b/kmailcvt/filter_thunderbird.cxx
@@ -165,13 +165,13 @@ void FilterThunderbird::importMBox(FilterInfo *info, const TQString& mboxName, c
info->setCurrent(0);
if( mboxName.length() > 20 ) {
TQString tmp_info = mboxName;
- tmp_info = tmp_info.replace( mailDir, "../" );
- if (tmp_info.contains(".sbd"))
+ tmp_info = tmp_info.tqreplace( mailDir, "../" );
+ if (tmp_info.tqcontains(".sbd"))
tmp_info.remove(".sbd");
info->setFrom( tmp_info );
} else
info->setFrom(mboxName);
- if(targetDir.contains(".sbd")) {
+ if(targetDir.tqcontains(".sbd")) {
TQString tmp_info = targetDir;
tmp_info.remove(".sbd");
info->setTo(tmp_info);
@@ -207,12 +207,12 @@ void FilterThunderbird::importMBox(FilterInfo *info, const TQString& mboxName, c
TQString destFolder;
TQString _targetDir = targetDir;
if(!targetDir.isNull()) {
- if(_targetDir.contains(".sbd"))
+ if(_targetDir.tqcontains(".sbd"))
_targetDir.remove(".sbd");
destFolder += "Thunderbird-Import/" + _targetDir + "/" + filenameInfo.baseName(TRUE);// mboxName;
} else {
destFolder = "Thunderbird-Import/" + rootDir;
- if(destFolder.contains(".sbd"))
+ if(destFolder.tqcontains(".sbd"))
destFolder.remove(".sbd");
}
diff --git a/kmailcvt/filters.cxx b/kmailcvt/filters.cxx
index 56e69d371..1028e69c7 100644
--- a/kmailcvt/filters.cxx
+++ b/kmailcvt/filters.cxx
@@ -47,9 +47,9 @@ FilterInfo::~FilterInfo()
{
}
-void FilterInfo::setStatusMsg( const TQString& status )
+void FilterInfo::seStatusMsg( const TQString& status )
{
- m_dlg->_textStatus->setText( status );
+ m_dlg->_texStatus->setText( status );
}
void FilterInfo::setFrom( const TQString& from )
diff --git a/kmailcvt/filters.hxx b/kmailcvt/filters.hxx
index dc51f8c94..b680ab5e0 100644
--- a/kmailcvt/filters.hxx
+++ b/kmailcvt/filters.hxx
@@ -36,7 +36,7 @@ class FilterInfo
FilterInfo(KImportPageDlg *dlg, TQWidget *parent, bool _removeDupMsg);
~FilterInfo();
- void setStatusMsg( const TQString& status );
+ void seStatusMsg( const TQString& status );
void setFrom( const TQString& from );
void setTo( const TQString& to );
void setCurrent( const TQString& current );
diff --git a/kmailcvt/kimportpagedlg.ui b/kmailcvt/kimportpagedlg.ui
index 4a90be531..88366d6bb 100644
--- a/kmailcvt/kimportpagedlg.ui
+++ b/kmailcvt/kimportpagedlg.ui
@@ -4,7 +4,7 @@
<property name="name">
<cstring>KImportPageDlg</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -28,7 +28,7 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<size>
<width>170</width>
<height>430</height>
@@ -60,7 +60,7 @@
<property name="sizeType">
<enum>Fixed</enum>
</property>
- <property name="sizeHint">
+ <property name="tqsizeHint">
<size>
<width>10</width>
<height>10</height>
@@ -69,7 +69,7 @@
</spacer>
<widget class="QLayoutWidget">
<property name="name">
- <cstring>layout16</cstring>
+ <cstring>tqlayout16</cstring>
</property>
<vbox>
<property name="name">
@@ -77,7 +77,7 @@
</property>
<widget class="QLayoutWidget">
<property name="name">
- <cstring>layout90</cstring>
+ <cstring>tqlayout90</cstring>
</property>
<grid>
<property name="name">
@@ -109,12 +109,12 @@
</widget>
<widget class="QLabel" row="0" column="0" rowspan="1" colspan="2">
<property name="name">
- <cstring>_textStatus</cstring>
+ <cstring>_texStatus</cstring>
</property>
<property name="text">
<string>Importing in progress...</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignTop</set>
</property>
</widget>
@@ -203,5 +203,5 @@
</widget>
</hbox>
</widget>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kmailcvt/kmailcvt.cpp b/kmailcvt/kmailcvt.cpp
index d56577f4d..9d5ddbb9b 100644
--- a/kmailcvt/kmailcvt.cpp
+++ b/kmailcvt/kmailcvt.cpp
@@ -73,10 +73,10 @@ void KMailCVT::next() {
setFinishEnabled( currentPage(), false );
// Start import
FilterInfo *info = new FilterInfo(importpage, this, selfilterpage->removeDupMsg_checked());
- info->setStatusMsg(i18n("Import in progress"));
+ info->seStatusMsg(i18n("Import in progress"));
info->clear(); // Clear info from last time
selectedFilter->import(info);
- info->setStatusMsg(i18n("Import finished"));
+ info->seStatusMsg(i18n("Import finished"));
// Cleanup
delete info;
// Enable finish & back buttons
diff --git a/kmailcvt/kselfilterpagedlg.ui b/kmailcvt/kselfilterpagedlg.ui
index 3b483645c..80e2eafea 100644
--- a/kmailcvt/kselfilterpagedlg.ui
+++ b/kmailcvt/kselfilterpagedlg.ui
@@ -4,7 +4,7 @@
<property name="name">
<cstring>KSelFilterPageDlg</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -28,7 +28,7 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<size>
<width>170</width>
<height>430</height>
@@ -60,7 +60,7 @@
<property name="sizeType">
<enum>Fixed</enum>
</property>
- <property name="sizeHint">
+ <property name="tqsizeHint">
<size>
<width>10</width>
<height>10</height>
@@ -69,7 +69,7 @@
</spacer>
<widget class="QLayoutWidget">
<property name="name">
- <cstring>layout19</cstring>
+ <cstring>tqlayout19</cstring>
</property>
<vbox>
<property name="name">
@@ -96,7 +96,7 @@ This program will help you import your email from your previous email program in
<property name="textFormat">
<enum>RichText</enum>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>WordBreak|AlignTop|AlignLeft</set>
</property>
<property name="vAlign" stdset="0">
@@ -140,5 +140,5 @@ This program will help you import your email from your previous email program in
</widget>
</hbox>
</widget>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>