summaryrefslogtreecommitdiffstats
path: root/quanta/messages/messageoutput.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/messageoutput.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/messageoutput.h')
-rw-r--r--quanta/messages/messageoutput.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/quanta/messages/messageoutput.h b/quanta/messages/messageoutput.h
index 223470bd..125b85e2 100644
--- a/quanta/messages/messageoutput.h
+++ b/quanta/messages/messageoutput.h
@@ -18,7 +18,7 @@
#ifndef MESSAGEOUTPUT_H
#define MESSAGEOUTPUT_H
-#include <qlistbox.h>
+#include <tqlistbox.h>
class KProcess;
class KPopupMenu;
@@ -30,17 +30,17 @@ weblint output
*@author Yacovlev Alexander & Dmitry Poplavski
*/
-class MessageOutput : public QListBox {
+class MessageOutput : public TQListBox {
Q_OBJECT
public:
- MessageOutput(QWidget *parent=0, const char *name=0);
+ MessageOutput(TQWidget *parent=0, const char *name=0);
~MessageOutput();
// Return whole content as a single string with EOLs
- QString content();
+ TQString content();
public slots:
/** Inserts an item with the content s to the end of the list*/
- MessageItem *insertItem(const QString& s);
+ MessageItem *insertItem(const TQString& s);
/** Insert message for each line of string (EOL-separated).
@param line The line this message refers to. -1 if it's not specified (the first number is taken from the message string)
@@ -49,19 +49,19 @@ public slots:
@param message The message itself
@param append Append the message to the previous one or start a new line. Default is false, start a new line.
*/
- void showMessage(int line, int column, const QString &fileName, const QString& message, bool append = false);
+ void showMessage(int line, int column, const TQString &fileName, const TQString& message, bool append = false);
/** Insert message for each line of string (EOL-separated).
@param message The message itself
@param append Append the message to the previous one or start a new line. Default is false, start a new line.
*/
- void showMessage(const QString& message, bool append = false);
+ void showMessage(const TQString& message, bool append = false);
/** Append message string to the last item
@param line The line this message refers to. -1 if it's not specified (the first number is taken from the message string)
@param column The column this message refers to. -1 if it's not specified (the second number is taken from the message string)
@param fileName The URL of the file this message refers to. If empty, the string following the "File: " string in the message is used.
@param message The message itself
*/
- void addToLastItem(const QString& message);
+ void addToLastItem(const TQString& message);
// Copy message content to clipboard
void copyContent();
// Save message content to clipboard
@@ -75,12 +75,12 @@ public:
void checkMaxItems();
signals:
- void clicked(const QString& fname, int line, int col);
+ void clicked(const TQString& fname, int line, int col);
protected slots:
- void clickItem( QListBoxItem *);
+ void clickItem( TQListBoxItem *);
// Show context menu
- void showMenu(QListBoxItem*, const QPoint&);
+ void showMenu(TQListBoxItem*, const TQPoint&);
private:
uint m_maxItems;