summaryrefslogtreecommitdiffstats
path: root/libtdepim/progressmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'libtdepim/progressmanager.h')
-rw-r--r--libtdepim/progressmanager.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libtdepim/progressmanager.h b/libtdepim/progressmanager.h
index 2e4f4ee2a..bb8e864ad 100644
--- a/libtdepim/progressmanager.h
+++ b/libtdepim/progressmanager.h
@@ -70,13 +70,13 @@ class KDE_EXPORT ProgressItem : public TQObject
/**
* @return The string to be used for showing this item's current status.
*/
- const TQString& status() const { return mtqStatus; }
+ const TQString& status() const { return mStatus; }
/**
* Set the string to be used for showing this item's current status.
* @p v will be interpreted as rich text, so it might have to be escaped.
* @param v The status string.
*/
- void setqStatus( const TQString& v );
+ void seStatus( const TQString& v );
/**
* @return Whether this item can be cancelled.
@@ -132,7 +132,7 @@ class KDE_EXPORT ProgressItem : public TQObject
* Reset the progress value of this item to 0 and the status string to
* the empty string.
*/
- void reset() { setProgress( 0 ); setqStatus( TQString() ); mCompleted = 0; }
+ void reset() { setProgress( 0 ); seStatus( TQString() ); mCompleted = 0; }
void cancel();
@@ -189,7 +189,7 @@ signals:
* @param The updated item.
* @param The new message.
*/
- void progressItemtqStatus( KPIM::ProgressItem*, const TQString& );
+ void progressItemStatus( KPIM::ProgressItem*, const TQString& );
/**
* Emitted when the label of an item changed. Should be used by
* progress dialogs to update the label of an item.
@@ -229,7 +229,7 @@ signals:
private:
TQString mId;
TQString mLabel;
- TQString mtqStatus;
+ TQString mStatus;
ProgressItem* mParent;
bool mCanBeCanceled;
unsigned int mProgress;
@@ -382,8 +382,8 @@ class KDE_EXPORT ProgressManager : public TQObject
void progressItemCompleted( KPIM::ProgressItem* );
/** @see ProgressItem::progressItemCanceled() */
void progressItemCanceled( KPIM::ProgressItem* );
- /** @see ProgressItem::progressItemtqStatus() */
- void progressItemtqStatus( KPIM::ProgressItem*, const TQString& );
+ /** @see ProgressItem::progressItemStatus() */
+ void progressItemStatus( KPIM::ProgressItem*, const TQString& );
/** @see ProgressItem::progressItemLabel() */
void progressItemLabel( KPIM::ProgressItem*, const TQString& );
/** @see ProgressItem::progressItemUsesCrypto() */