summaryrefslogtreecommitdiffstats
path: root/kig/modes/linkslabel.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kig/modes/linkslabel.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kig/modes/linkslabel.h')
-rw-r--r--kig/modes/linkslabel.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kig/modes/linkslabel.h b/kig/modes/linkslabel.h
index ba64dbc2..89d1c76e 100644
--- a/kig/modes/linkslabel.h
+++ b/kig/modes/linkslabel.h
@@ -18,7 +18,7 @@
#ifndef KIG_lINKS_LABEL_H
#define KIG_lINKS_LABEL_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include <vector>
#include <utility>
@@ -32,7 +32,7 @@ class LinksLabel : public QWidget
Q_OBJECT
public:
- LinksLabel( QWidget* parent = 0, const char* name = 0 );
+ LinksLabel( TQWidget* parent = 0, const char* name = 0 );
~LinksLabel();
class LinksLabelEditBuf
@@ -43,7 +43,7 @@ public:
private:
// declare these private so only LinksLabel can use them...
LinksLabelEditBuf() {}
- typedef std::vector<std::pair<bool,QString> > vec;
+ typedef std::vector<std::pair<bool,TQString> > vec;
vec data;
};
@@ -55,11 +55,11 @@ public:
/**
* add a piece of normal text..
*/
- void addText( const QString& s, LinksLabelEditBuf& buf );
+ void addText( const TQString& s, LinksLabelEditBuf& buf );
/**
* add a link...
*/
- void addLink( const QString& s, LinksLabelEditBuf& buf );
+ void addLink( const TQString& s, LinksLabelEditBuf& buf );
/**
* apply the changes... This clears the current contents and adds
* the new data...