summaryrefslogtreecommitdiffstats
path: root/kshowmail/serverdialog.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:59:03 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:59:03 -0500
commit9c02dbb59ce57c68dc177d9294b980bf114a3e11 (patch)
treeb1b40423c9be9a42a97cd0e8f3af3139aefb6fa0 /kshowmail/serverdialog.h
parent0b875800e452c97b1a3f25aba5f029a8c33a4b93 (diff)
downloadkshowmail-9c02dbb59ce57c68dc177d9294b980bf114a3e11.tar.gz
kshowmail-9c02dbb59ce57c68dc177d9294b980bf114a3e11.zip
Update to TDE R14 API
Diffstat (limited to 'kshowmail/serverdialog.h')
-rw-r--r--kshowmail/serverdialog.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/kshowmail/serverdialog.h b/kshowmail/serverdialog.h
index 2168003..fd3dca2 100644
--- a/kshowmail/serverdialog.h
+++ b/kshowmail/serverdialog.h
@@ -18,30 +18,30 @@
#ifndef SERVERDIALOG_H
#define SERVERDIALOG_H
-//Qt headers
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qtooltip.h>
-#include <qspinbox.h>
-#include <qgroupbox.h>
-#include <qbuttongroup.h>
-#include <qradiobutton.h>
-#include <qcheckbox.h>
+//TQt headers
+#include <ntqlayout.h>
+#include <ntqlabel.h>
+#include <ntqtooltip.h>
+#include <ntqspinbox.h>
+#include <ntqgroupbox.h>
+#include <ntqbuttongroup.h>
+#include <ntqradiobutton.h>
+#include <ntqcheckbox.h>
//KDE headers
#include <kdialogbase.h>
-#include <klocale.h>
+#include <tdelocale.h>
#include <klineedit.h>
#include <kcombobox.h>
#include <kdebug.h>
-#include <kmessagebox.h>
+#include <tdemessagebox.h>
#include <kpassdlg.h>
//KShowmail headers
#include "configelem.h"
#include "constants.h"
#include "encryption.h"
-#include "kwalletaccess.h"
+#include "tdewalletaccess.h"
#include <ktabwidget.h>
//radio button IDs
@@ -73,7 +73,7 @@ class ServerDialog : public KDialogBase
* @param parent parent of the dialog
* @param item account to setup
*/
- ServerDialog( QWidget* parent, ConfigElem* item = NULL );
+ ServerDialog( TQWidget* parent, ConfigElem* item = NULL );
/**
* Destructor
@@ -105,7 +105,7 @@ class ServerDialog : public KDialogBase
/**
* Spinbox to choose the tcp port.
*/
- QSpinBox* spbPort;
+ TQSpinBox* spbPort;
/**
* Edit line which contains the user name.
@@ -120,17 +120,17 @@ class ServerDialog : public KDialogBase
/**
* Check box to select whether the account is active or not.
*/
- QCheckBox* chkActive;
+ TQCheckBox* chkActive;
/**
* Combines the radio buttons of password storage.
*/
- QButtonGroup* grpPasswordStorage;
+ TQButtonGroup* grpPasswordStorage;
/**
* Combines the radio buttons of secure transfer.
*/
- QButtonGroup* grpSecureTransfer;
+ TQButtonGroup* grpSecureTransfer;
protected slots: