summaryrefslogtreecommitdiffstats
path: root/libkdepim/progressdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/progressdialog.h')
-rw-r--r--libkdepim/progressdialog.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/libkdepim/progressdialog.h b/libkdepim/progressdialog.h
index b9a29e4b..26d9b94d 100644
--- a/libkdepim/progressdialog.h
+++ b/libkdepim/progressdialog.h
@@ -20,11 +20,11 @@
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of this program with any edition of
- * the Qt library by Trolltech AS, Norway (or with modified versions
- * of Qt that use the same license as Qt), and distribute linked
+ * the TQt library by Trolltech AS, Norway (or with modified versions
+ * of TQt that use the same license as TQt), and distribute linked
* combinations including the two. You must obey the GNU General
* Public License in all respects for all of the code used other than
- * Qt. If you modify this file, you may extend this exception to
+ * TQt. If you modify this file, you may extend this exception to
* your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from
* your version.
@@ -52,8 +52,9 @@ class SSLLabel;
class TransactionItemView : public TQScrollView {
Q_OBJECT
+ TQ_OBJECT
public:
- TransactionItemView( TQWidget * parent = 0,
+ TransactionItemView( TQWidget * tqparent = 0,
const char * name = 0,
WFlags f = 0 );
@@ -77,9 +78,10 @@ private:
class TransactionItem : public TQVBox {
Q_OBJECT
+ TQ_OBJECT
public:
- TransactionItem( TQWidget * parent,
+ TransactionItem( TQWidget * tqparent,
ProgressItem* item, bool first );
~TransactionItem();
@@ -88,7 +90,7 @@ public:
void setProgress( int progress );
void setLabel( const TQString& );
- void seStatus( const TQString& );
+ void setqStatus( const TQString& );
void setCrypto( bool );
void setTotalSteps( int totalSteps );
@@ -107,7 +109,7 @@ protected:
TQProgressBar* mProgress;
TQPushButton* mCancelButton;
TQLabel* mItemLabel;
- TQLabel* mItemStatus;
+ TQLabel* mItemtqStatus;
TQFrame* mFrame;
SSLLabel* mSSLLabel;
ProgressItem* mItem;
@@ -116,9 +118,10 @@ protected:
class KDE_EXPORT ProgressDialog : public OverlayWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- ProgressDialog( TQWidget* alignWidget, TQWidget* parent, const char* name = 0 );
+ ProgressDialog( TQWidget* alignWidget, TQWidget* tqparent, const char* name = 0 );
~ProgressDialog();
void setVisible( bool b );
@@ -130,7 +133,7 @@ void slotTransactionAdded( KPIM::ProgressItem *item );
void slotTransactionCompleted( KPIM::ProgressItem *item );
void slotTransactionCanceled( KPIM::ProgressItem *item );
void slotTransactionProgress( KPIM::ProgressItem *item, unsigned int progress );
- void slotTransactionStatus( KPIM::ProgressItem *item, const TQString& );
+ void slotTransactiontqStatus( KPIM::ProgressItem *item, const TQString& );
void slotTransactionLabel( KPIM::ProgressItem *item, const TQString& );
void slotTransactionUsesCrypto( KPIM::ProgressItem *item, bool );
void slotTransactionUsesBusyIndicator( KPIM::ProgressItem*, bool );