summaryrefslogtreecommitdiffstats
path: root/src/searchbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/searchbar.h')
-rw-r--r--src/searchbar.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/searchbar.h b/src/searchbar.h
index e733d42..7f31a38 100644
--- a/src/searchbar.h
+++ b/src/searchbar.h
@@ -20,14 +20,14 @@
#ifndef KBIBTEXSEARCHBAR_H
#define KBIBTEXSEARCHBAR_H
-#include <qwidget.h>
+#include <ntqwidget.h>
#include <kxmlguifactory.h>
#include <documentlistview.h>
#include <entryfield.h>
-class QTimer;
+class TQTimer;
class KPushButton;
class KPopupMenu;
class KHistoryCombo;
@@ -38,27 +38,27 @@ namespace KBibTeX
/**
@author Thomas Fischer
*/
- class SearchBar : public QWidget
+ class SearchBar : public TQWidget
{
Q_OBJECT
public:
- SearchBar( QWidget *parent = 0, const char *name = "search_bar" );
+ SearchBar( TQWidget *parent = 0, const char *name = "search_bar" );
~SearchBar();
void setFactory( KXMLGUIFactory *factory, KXMLGUIClient *client );
void restoreState();
signals:
- void doSearch( const QString &text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
+ void doSearch( const TQString &text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
void onlineSearch();
public slots:
- void setSearch( const QString&text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
+ void setSearch( const TQString&text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
private:
KPushButton *m_pushButtonClearSearchText;
KHistoryCombo *m_comboboxFilter;
- QTimer *m_timerInput;
+ TQTimer *m_timerInput;
KPushButton *m_pushButtonAddElement;
KPushButton *m_pushButtonSearchOnlineDatabases;
KComboBox *m_comboboxFilterType;