summaryrefslogtreecommitdiffstats
path: root/src/webqueryieeexplore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webqueryieeexplore.h')
-rw-r--r--src/webqueryieeexplore.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/webqueryieeexplore.h b/src/webqueryieeexplore.h
index d07f504..3314d74 100644
--- a/src/webqueryieeexplore.h
+++ b/src/webqueryieeexplore.h
@@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYIEEEXPLORE_H
#define KBIBTEXWEBQUERYIEEEXPLORE_H
-#include <qregexp.h>
+#include <ntqregexp.h>
#include <webquery.h>
#include <fileimporter.h>
@@ -34,7 +34,7 @@ namespace KBibTeX
{
Q_OBJECT
public:
- WebQueryIEEExploreWidget( QWidget *parent, const char *name = 0 );
+ WebQueryIEEExploreWidget( TQWidget *parent, const char *name = 0 );
};
/**
@@ -45,14 +45,14 @@ namespace KBibTeX
{
Q_OBJECT
public:
- WebQueryIEEExplore( QWidget* parent );
+ WebQueryIEEExplore( TQWidget* parent );
virtual ~WebQueryIEEExplore();
void query();
- QString title();
- QString disclaimer();
- QString disclaimerURL();
+ TQString title();
+ TQString disclaimer();
+ TQString disclaimerURL();
WebQueryWidget *widget();
@@ -62,20 +62,20 @@ namespace KBibTeX
private:
BibTeX::FileImporter *m_bibtexImporter;
WebQueryIEEExploreWidget *m_widget;
- QRegExp m_numberOfMatches;
- QRegExp m_findArNumber;
- QRegExp m_date;
+ TQRegExp m_numberOfMatches;
+ TQRegExp m_findArNumber;
+ TQRegExp m_date;
KURL m_risURL;
- QValueList<int> m_arnumList;
- QString m_incomingData;
+ TQValueList<int> m_arnumList;
+ TQString m_incomingData;
int m_numMaxHits, m_numMatches, m_hitCounter;
void fetchNext();
void fixDate( BibTeX::Entry *entry );
- QString parseMonth( const QString &month );
+ TQString parseMonth( const TQString &month );
private slots:
- void slotData( KIO::Job *job, const QByteArray &data );
+ void slotData( KIO::Job *job, const TQByteArray &data );
void slotResult( KIO::Job *job );
};
}