summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoFontTab.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kotext/KoFontTab.h')
-rw-r--r--lib/kotext/KoFontTab.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/kotext/KoFontTab.h b/lib/kotext/KoFontTab.h
index 4d6ff9c3..5cb1d3bb 100644
--- a/lib/kotext/KoFontTab.h
+++ b/lib/kotext/KoFontTab.h
@@ -21,20 +21,21 @@
#define __kofonttab_h__
#include <kofonttabbase.h>
-#include <qfont.h>
+#include <tqfont.h>
class KoFontTab : public KoFontTabBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- KoFontTab( uint fontListCriteria=0, QWidget* parent=0, const char* name=0, WFlags fl=0 );
+ KoFontTab( uint fontListCriteria=0, TQWidget* tqparent=0, const char* name=0, WFlags fl=0 );
~KoFontTab();
- QFont getSelection();
+ TQFont getSelection();
public slots:
- void setSelection( const QFont &font );
+ void setSelection( const TQFont &font );
signals:
void familyChanged();
@@ -43,10 +44,10 @@ signals:
void sizeChanged();
private:
- QFont comparisonFont;
+ TQFont comparisonFont;
private slots:
- void slotFontChanged( const QFont &font );
+ void slotFontChanged( const TQFont &font );
};
#endif