From 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 13 Apr 2011 00:46:47 +0000 Subject: 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 --- korn/account_input.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'korn/account_input.h') diff --git a/korn/account_input.h b/korn/account_input.h index 43e680477..8cff757ce 100644 --- a/korn/account_input.h +++ b/korn/account_input.h @@ -33,7 +33,7 @@ class TQCheckBox; #include /** - * 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& list, + ComboInput( TQWidget *tqparent, const TQString& title, const TQMap& 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 */ -- cgit v1.2.1