summaryrefslogtreecommitdiffstats
path: root/korn/account_input.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /korn/account_input.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korn/account_input.h')
-rw-r--r--korn/account_input.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/korn/account_input.h b/korn/account_input.h
index 43e68047..8cff757c 100644
--- a/korn/account_input.h
+++ b/korn/account_input.h
@@ -33,7 +33,7 @@ class TQCheckBox;
#include <tqmap.h>
/**
- * This classe tqcontains methods to use in the creation of the protocol configuration box.
+ * This classe contains methods to use in the creation of the protocol configuration box.
* The subclasses of this classes define the methods.
*/
class AccountInput
@@ -106,24 +106,24 @@ public:
/**
* Constructor
*
- * @param parent The parent widget
+ * @param tqparent The tqparent widget
* @param title The title that appears on the screen
* @param type The type of TextEdit which is used
* @param defaul The default value of this object
* @param configName The name it has in the configuration box.
*/
- TextInput( TQWidget *parent, const TQString& title, Type type, const TQString& defaul, const TQString& configName );
+ TextInput( TQWidget *tqparent, const TQString& title, Type type, const TQString& defaul, const TQString& configName );
/**
* Constructor. Use this one if you want to ensure a number is inserted.
*
- * @param parent The parent widget
+ * @param tqparent The tqparent widget
* @param title The title that appears on the screen
* @param min The minimum value that can be inserted
* @param max The maximum value that can be inserted
* @param defaul The default value of this object
* @param configName The name it has in the configuration box.
*/
- TextInput( TQWidget *parent, const TQString& title, int min, int max, const TQString& defaul, const TQString& configName );
+ TextInput( TQWidget *tqparent, const TQString& title, int min, int max, const TQString& defaul, const TQString& configName );
/**
* Destructor
*/
@@ -163,12 +163,12 @@ class URLInput : public AccountInput
public:
/**
* Constructor
- * @param parent The parent of this object
+ * @param tqparent The tqparent of this object
* @param title The title of the label next to the URL.
* @param defaul The default value
* @param configName The name of the configuration entry
*/
- URLInput( TQWidget *parent, const TQString& title, const TQString& defaul, const TQString& configName );
+ URLInput( TQWidget *tqparent, const TQString& title, const TQString& defaul, const TQString& configName );
/**
* Destructor
*/
@@ -210,14 +210,14 @@ public:
/**
* Constructor
*
- * @param parent The parent of the widgets which are created
+ * @param tqparent The tqparent of the widgets which are created
* @param title The title next to the combo box
* @param list A mapping which maps a value in the configuration to a (translated) entry in the
* combo box.
* @param default The default value of the combo box.
* @param configName The name in which the option is saved.
*/
- ComboInput( TQWidget *parent, const TQString& title, const TQMap<TQString,TQString>& list,
+ ComboInput( TQWidget *tqparent, const TQString& title, const TQMap<TQString,TQString>& list,
const TQString& defaul, const TQString& configName );
/**
* Destructor
@@ -264,12 +264,12 @@ public:
/**
* Constructor
*
- * @param parent The parent for the objects which are created
+ * @param tqparent The tqparent for the objects which are created
* @param title The title of the checkbox
* @param defaul The default value ("true" for checked, "false" otherwise")
* @param configName The name of the configuration entry of this object
*/
- CheckboxInput( TQWidget *parent, const TQString& title, const TQString& defaul, const TQString& configName );
+ CheckboxInput( TQWidget *tqparent, const TQString& title, const TQString& defaul, const TQString& configName );
/**
* Destructor
*/