diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /kmobile/kmobiledevice.h | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmobile/kmobiledevice.h')
-rw-r--r-- | kmobile/kmobiledevice.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmobile/kmobiledevice.h b/kmobile/kmobiledevice.h index d89e3f2d8..5cf19092d 100644 --- a/kmobile/kmobiledevice.h +++ b/kmobile/kmobiledevice.h @@ -51,10 +51,10 @@ class KConfig; * For a KMobileSomeDevice driver you have to write the following code: * <pre> * K_EXPORT_COMPONENT_FACTORY( libkmobile_sometqdevice, KMobileSomeDevice() ); - * TQObject *KMobileSomeDevice::createObject( TQObject *tqparent, const char *name, + * TQObject *KMobileSomeDevice::createObject( TQObject *parent, const char *name, * const char *, const TQStringList &args ) * { - * return new KMobileSomeDevice( tqparent, name, args ); + * return new KMobileSomeDevice( parent, name, args ); * } * </pre> * @@ -72,7 +72,7 @@ public: /** * Construct a new KMobileDevice. * - * @param obj The tqparent object. This is usually 0. + * @param obj The parent object. This is usually 0. * @param name The object name. For session management and window management to work. * @param args Additional commandline parameters - the first entry has the config file name. */ @@ -83,16 +83,16 @@ public: /** * Connect to the device. * - * @param tqparent The tqparent widget. It will be used as tqparent for message boxes. + * @param parent The parent widget. It will be used as parent for message boxes. */ - virtual bool connectDevice( TQWidget *tqparent = 0 ) = 0; + virtual bool connectDevice( TQWidget *parent = 0 ) = 0; /** * Disconnect from the device. * - * @param tqparent The tqparent widget. It will be used as tqparent for message boxes. + * @param parent The parent widget. It will be used as parent for message boxes. */ - virtual bool disconnectDevice( TQWidget *tqparent = 0 ) = 0; + virtual bool disconnectDevice( TQWidget *parent = 0 ) = 0; /** * Returns true, if the tqdevice is currently connected and the link is online. @@ -135,9 +135,9 @@ public: /** * Pop-up a tqdevice-specific configuration dialog. * - * @param tqparent The tqparent widget. It will be used as tqparent for the configuration dialog. + * @param parent The parent widget. It will be used as parent for the configuration dialog. */ - virtual bool configDialog(TQWidget *tqparent); + virtual bool configDialog(TQWidget *parent); // The ClassType may be used e.g. to select an suitable icon enum ClassType { |