summaryrefslogtreecommitdiffstats
path: root/kmail/mailinglistpropertiesdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/mailinglistpropertiesdialog.cpp')
-rw-r--r--kmail/mailinglistpropertiesdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/mailinglistpropertiesdialog.cpp b/kmail/mailinglistpropertiesdialog.cpp
index 15749d71..85c0c340 100644
--- a/kmail/mailinglistpropertiesdialog.cpp
+++ b/kmail/mailinglistpropertiesdialog.cpp
@@ -25,7 +25,7 @@
** you do not wish to do so, delete this exception statement from
** your version.
*******************************************************************************/
-#include <layout.h>
+#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcombobox.h>
#include <tqgroupbox.h>
@@ -55,12 +55,12 @@ MailingListFolderPropertiesDialog::MailingListFolderPropertiesDialog( TQWidget*
TQLabel* label;
mLastItem = 0;
- TQVBoxLayout *topLayout = new TQVBoxLayout( layout(), spacingHint(),
+ TQVBoxLayout *topLayout = new TQVBoxLayout( tqlayout(), spacingHint(),
"topLayout" );
TQGroupBox *mlGroup = new TQGroupBox( i18n("Associated Mailing List" ), this );
mlGroup->setColumnLayout( 0, Qt::Vertical );
- TQGridLayout *groupLayout = new TQGridLayout( mlGroup->layout(), 6, 3, spacingHint() );
+ TQGridLayout *groupLayout = new TQGridLayout( mlGroup->tqlayout(), 6, 3, spacingHint() );
topLayout->addWidget( mlGroup );
setMainWidget( mlGroup );
@@ -144,7 +144,7 @@ MailingListFolderPropertiesDialog::MailingListFolderPropertiesDialog( TQWidget*
TQT_SLOT(slotAddressChanged(int)) );
load();
- resize( TQSize(295, 204).expandedTo(minimumSizeHint()) );
+ resize( TQSize(295, 204).expandedTo(tqminimumSizeHint()) );
clearWState( WState_Polished );
}