summaryrefslogtreecommitdiffstats
path: root/quanta/messages/annotationoutput.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
commitdc6b8e72fed2586239e3514819238c520636c9d9 (patch)
tree88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/messages/annotationoutput.h
parent6927d4436e54551917f600b706a8d6109e49de1c (diff)
downloadtdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz
tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/messages/annotationoutput.h')
-rw-r--r--quanta/messages/annotationoutput.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/quanta/messages/annotationoutput.h b/quanta/messages/annotationoutput.h
index 0c5ab748..50e293d6 100644
--- a/quanta/messages/annotationoutput.h
+++ b/quanta/messages/annotationoutput.h
@@ -38,12 +38,12 @@ class AnnotationOutput : public KTabWidget
{
Q_OBJECT
public:
- AnnotationOutput(QWidget *parent = 0, const char *name = 0);
+ AnnotationOutput(TQWidget *parent = 0, const char *name = 0);
~AnnotationOutput();
MessageOutput *currentFileAnnotations() const {return m_currentFileAnnotations;}
KListView *allAnnotations() const {return m_allAnnotations;}
- void writeAnnotations(const QString &fileName, const QMap<uint, QPair<QString, QString> > &annotations);
+ void writeAnnotations(const TQString &fileName, const TQMap<uint, QPair<TQString, TQString> > &annotations);
public slots:
/**
@@ -52,16 +52,16 @@ public slots:
void updateAnnotations();
void readAnnotations();
void clearAnnotations();
- void insertAnnotation(uint line, const QString& fileName, const QPair<QString, QString>& annotation);
+ void insertAnnotation(uint line, const TQString& fileName, const QPair<TQString, TQString>& annotation);
private slots:
- void tabChanged(QWidget *w);
- void allAnnotationsItemExecuted(QListViewItem *item);
- void yourAnnotationsItemExecuted(QListViewItem *item);
+ void tabChanged(TQWidget *w);
+ void allAnnotationsItemExecuted(TQListViewItem *item);
+ void yourAnnotationsItemExecuted(TQListViewItem *item);
void slotUpdateNextFile();
signals:
- void clicked(const QString& fname, int line, int col);
+ void clicked(const TQString& fname, int line, int col);
private:
/**
@@ -72,17 +72,17 @@ private:
MessageOutput *m_currentFileAnnotations;
KListView *m_allAnnotations;
- QDict<KListViewItem> m_annotatedFileItems;
- QMap<QListViewItem*, QString> m_fileNames;
- QMap<QListViewItem*, uint> m_lines;
+ TQDict<KListViewItem> m_annotatedFileItems;
+ TQMap<TQListViewItem*, TQString> m_fileNames;
+ TQMap<TQListViewItem*, uint> m_lines;
uint m_yourAnnotationsNum;
KListView *m_yourAnnotations;
- QDict<KListViewItem> m_yourFileItems;
- QMap<QListViewItem*, QString> m_yourFileNames;
- QMap<QListViewItem*, uint> m_yourLines;
+ TQDict<KListViewItem> m_yourFileItems;
+ TQMap<TQListViewItem*, TQString> m_yourFileNames;
+ TQMap<TQListViewItem*, uint> m_yourLines;
- QTimer *m_updateTimer;
+ TQTimer *m_updateTimer;
KURL::List m_files;
uint m_fileIndex;
};