summaryrefslogtreecommitdiffstats
path: root/krename/translitplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'krename/translitplugin.h')
-rw-r--r--krename/translitplugin.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/krename/translitplugin.h b/krename/translitplugin.h
index c385b36..979ba14 100644
--- a/krename/translitplugin.h
+++ b/krename/translitplugin.h
@@ -17,11 +17,11 @@
#include "batchrenamer.h"
// QT includes
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qtextcodec.h>
-#include <qvgroupbox.h>
-#include <qcheckbox.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqtextcodec.h>
+#include <tqvgroupbox.h>
+#include <tqcheckbox.h>
// KDE includes
#include <kapplication.h>
@@ -35,25 +35,26 @@
*/
class TranslitPlugin : public Plugin {
Q_OBJECT
+ TQ_OBJECT
public:
- const QString getName() const;
- const QString getAccelName() const;
+ const TQString getName() const;
+ const TQString getAccelName() const;
const int type() const;
- const QPixmap getIcon() const;
- void drawInterface( QWidget* w, QVBoxLayout* l );
+ const TQPixmap getIcon() const;
+ void drawInterface( TQWidget* w, TQVBoxLayout* l );
void finished();
bool checkError();
void fillStructure();
- QString processFile( BatchRenamer*, int, QString token, int );
+ TQString processFile( BatchRenamer*, int, TQString token, int );
TranslitPlugin();
protected:
- QString translit(const QString &);
+ TQString translit(const TQString &);
- typedef QMap<QString, QString> TranslitMap;
+ typedef TQMap<TQString, TQString> TranslitMap;
TranslitMap m_mapFromUTF8;
- static const QString m_strUtf8[];
- static const QString m_strEngl[];
+ static const TQString m_strUtf8[];
+ static const TQString m_strEngl[];
};
#endif