summaryrefslogtreecommitdiffstats
path: root/kspread/dialogs/kspread_dlg_reference.h
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/dialogs/kspread_dlg_reference.h')
-rw-r--r--kspread/dialogs/kspread_dlg_reference.h46
1 files changed, 24 insertions, 22 deletions
diff --git a/kspread/dialogs/kspread_dlg_reference.h b/kspread/dialogs/kspread_dlg_reference.h
index 3ba3e7610..30932101d 100644
--- a/kspread/dialogs/kspread_dlg_reference.h
+++ b/kspread/dialogs/kspread_dlg_reference.h
@@ -28,52 +28,54 @@
#include <kdialogbase.h>
-class QComboBox;
-class QLabel;
-class QLineEdit;
-class QPushButton;
-class QListBox;
-class QListBoxItem;
+class TQComboBox;
+class TQLabel;
+class TQLineEdit;
+class TQPushButton;
+class TQListBox;
+class TQListBoxItem;
namespace KSpread
{
class View;
-class reference: public QDialog
+class reference: public TQDialog
{
Q_OBJECT
+ TQ_OBJECT
public:
- reference( View* parent, const char* name );
+ reference( View* tqparent, const char* name );
public slots:
void slotOk();
void slotCancel();
- void slotDoubleClicked(QListBoxItem *);
+ void slotDoubleClicked(TQListBoxItem *);
void slotRemove();
void slotEdit();
- void slotHighlighted(QListBoxItem *);
+ void slotHighlighted(TQListBoxItem *);
protected:
View * m_pView;
- QListBox * m_list;
- QPushButton * m_pOk;
- QPushButton * m_pCancel;
- QPushButton * m_pEdit;
- QPushButton * m_pRemove;
- QLabel * m_rangeName;
+ TQListBox * m_list;
+ TQPushButton * m_pOk;
+ TQPushButton * m_pCancel;
+ TQPushButton * m_pEdit;
+ TQPushButton * m_pRemove;
+ TQLabel * m_rangeName;
private:
- void displayAreaValues(QString const & areaName);
+ void displayAreaValues(TQString const & areaName);
};
class EditAreaName : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- EditAreaName( View * parent, const char * name,
- QString const & areaname );
+ EditAreaName( View * tqparent, const char * name,
+ TQString const & areaname );
~EditAreaName();
public slots:
@@ -82,9 +84,9 @@ public slots:
private:
View * m_pView;
- QLineEdit * m_area;
- QComboBox * m_sheets;
- QLabel * m_areaName;
+ TQLineEdit * m_area;
+ TQComboBox * m_sheets;
+ TQLabel * m_areaName;
};
} // namespace KSpread