summaryrefslogtreecommitdiffstats
path: root/keduca/keduca/kgroupeduca.h
diff options
context:
space:
mode:
Diffstat (limited to 'keduca/keduca/kgroupeduca.h')
-rw-r--r--keduca/keduca/kgroupeduca.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/keduca/keduca/kgroupeduca.h b/keduca/keduca/kgroupeduca.h
index f0dbd904..532bb890 100644
--- a/keduca/keduca/kgroupeduca.h
+++ b/keduca/keduca/kgroupeduca.h
@@ -18,23 +18,23 @@
#ifndef KGROUPEDUCA_H
#define KGROUPEDUCA_H
-#include <qvbuttongroup.h>
-#include <qscrollview.h>
-#include <qvbox.h>
+#include <tqvbuttongroup.h>
+#include <tqscrollview.h>
+#include <tqvbox.h>
/**
*@author Javier Campos Morales
*/
-class KGroupEduca : public QVButtonGroup {
+class KGroupEduca : public TQVButtonGroup {
Q_OBJECT
public:
enum ButtonType { Radio, Check };
- KGroupEduca(QWidget *parent=0, const char *name=0);
+ KGroupEduca(TQWidget *parent=0, const char *name=0);
~KGroupEduca();
/** Insert a check or radio button */
- void insertAnswer( const QString& text);
+ void insertAnswer( const TQString& text);
/** Set type */
void setType(ButtonType Type);
/** Clear all kradio or kcheck answers */
@@ -43,13 +43,13 @@ public:
bool isChecked(int id);
protected:
- QVBox* _vbox2;
+ TQVBox* _vbox2;
private:
// Private attributes
- QScrollView *_sv;
+ TQScrollView *_sv;
/** Type mode */
ButtonType _typeMode;
};