diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:32:24 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:32:24 -0600 | 
| commit | 631a19d8c5c5f69dc0d941c1997806fb422c79a6 (patch) | |
| tree | 48a1a5d40ca2aa276b04f95398d9fba3fd9d7d8a /lib/syncAction.h | |
| parent | 87cd441352f3f2f1b2279bb47ebbb54ced81194f (diff) | |
| download | kpilot-631a19d8c5c5f69dc0d941c1997806fb422c79a6.tar.gz kpilot-631a19d8c5c5f69dc0d941c1997806fb422c79a6.zip | |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'lib/syncAction.h')
| -rw-r--r-- | lib/syncAction.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib/syncAction.h b/lib/syncAction.h index 42b1854..8636731 100644 --- a/lib/syncAction.h +++ b/lib/syncAction.h @@ -60,7 +60,7 @@ public:  		const char *name=0L);  	~SyncAction(); -	typedef enum { Error=-1 } tqStatus; +	typedef enum { Error=-1 } Status;  	/** A syncaction has a status, which can be expressed as an  	*   integer. Subclasses are expected to define their own status @@ -68,7 +68,7 @@ public:  	*/  	int status() const  	{ -		return fActiontqStatus; +		return fActionStatus;  	}  	/** Return a human-readable representation of the status. */  	virtual TQString statusString() const; @@ -156,7 +156,7 @@ public:  protected:  	/** Connection to the device. @todo make private. */  	KPilotLink *fHandle; -	int fActiontqStatus; +	int fActionStatus;  	/** Returns a pointer to the connection to the device. */  	inline KPilotLink *deviceLink() const | 
