summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/ui/cryptoconfigmodule_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/ui/cryptoconfigmodule_p.h')
-rw-r--r--certmanager/lib/ui/cryptoconfigmodule_p.h34
1 files changed, 22 insertions, 12 deletions
diff --git a/certmanager/lib/ui/cryptoconfigmodule_p.h b/certmanager/lib/ui/cryptoconfigmodule_p.h
index cce1afea..fb9acc6c 100644
--- a/certmanager/lib/ui/cryptoconfigmodule_p.h
+++ b/certmanager/lib/ui/cryptoconfigmodule_p.h
@@ -19,11 +19,11 @@
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
- the Qt library by Trolltech AS, Norway (or with modified versions
- of Qt that use the same license as Qt), and distribute linked
+ the TQt library by Trolltech AS, Norway (or with modified versions
+ of TQt that use the same license as TQt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
- Qt. If you modify this file, you may extend this exception to
+ TQt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
@@ -58,10 +58,11 @@ namespace Kleo {
*/
class CryptoConfigComponentGUI : public TQWidget {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigComponentGUI( CryptoConfigModule* module, Kleo::CryptoConfigComponent* component,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
bool save();
void load();
@@ -77,10 +78,11 @@ namespace Kleo {
*/
class CryptoConfigGroupGUI : public TQObject {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigGroupGUI( CryptoConfigModule* module, Kleo::CryptoConfigGroup* group,
- TQGridLayout * tqlayout, TQWidget* parent, const char* name = 0 );
+ TQGridLayout * tqlayout, TQWidget* tqparent, const char* name = 0 );
bool save();
void load();
@@ -108,6 +110,7 @@ namespace Kleo {
*/
class CryptoConfigEntryGUI : public TQObject {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryGUI( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
@@ -145,13 +148,14 @@ namespace Kleo {
*/
class CryptoConfigEntryLineEdit : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryLineEdit( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
@@ -164,13 +168,14 @@ namespace Kleo {
*/
class CryptoConfigEntryPath : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryPath( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
@@ -183,13 +188,14 @@ namespace Kleo {
*/
class CryptoConfigEntryDirPath : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryDirPath( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
@@ -202,13 +208,14 @@ namespace Kleo {
*/
class CryptoConfigEntryURL : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryURL( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
@@ -221,13 +228,14 @@ namespace Kleo {
*/
class CryptoConfigEntrySpinBox : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntrySpinBox( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
private:
@@ -240,13 +248,14 @@ namespace Kleo {
*/
class CryptoConfigEntryCheckBox : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryCheckBox( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
private:
@@ -258,13 +267,14 @@ namespace Kleo {
*/
class CryptoConfigEntryLDAPURL : public CryptoConfigEntryGUI {
Q_OBJECT
+ TQ_OBJECT
public:
CryptoConfigEntryLDAPURL( CryptoConfigModule* module,
Kleo::CryptoConfigEntry* entry,
const TQString& entryName,
TQGridLayout * tqlayout,
- TQWidget* parent, const char* name = 0 );
+ TQWidget* tqparent, const char* name = 0 );
virtual void doSave();
virtual void doLoad();
private slots: