summaryrefslogtreecommitdiffstats
path: root/noatun/library/noatun/scrollinglabel.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /noatun/library/noatun/scrollinglabel.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun/library/noatun/scrollinglabel.h')
-rw-r--r--noatun/library/noatun/scrollinglabel.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/noatun/library/noatun/scrollinglabel.h b/noatun/library/noatun/scrollinglabel.h
index 1615a64f..231d3158 100644
--- a/noatun/library/noatun/scrollinglabel.h
+++ b/noatun/library/noatun/scrollinglabel.h
@@ -23,7 +23,7 @@
#ifndef SCROLLING_LABEL_H
#define SCROLLING_LABEL_H
-#include <qwidget.h>
+#include <tqwidget.h>
/**
* A clever label that scrolls its contents as soon as there is not enough
* space to show everything at once.
@@ -33,7 +33,7 @@ class ScrollingLabel : public QWidget
Q_OBJECT
public:
- ScrollingLabel(const QString &initialText,QWidget *parent,
+ ScrollingLabel(const TQString &initialText,TQWidget *parent,
const char * name = 0);
virtual ~ScrollingLabel();
@@ -41,15 +41,15 @@ class ScrollingLabel : public QWidget
* Sets the label's text
* set @p time (ms) if you want to display a temporary message
**/
- virtual void setText(const QString &text, int time = -1);
+ virtual void setText(const TQString &text, int time = -1);
- virtual QSize sizeHint() const;
- virtual QSize minimumSizeHint() const;
+ virtual TQSize sizeHint() const;
+ virtual TQSize minimumSizeHint() const;
/**
* @return the label's text.
**/
- virtual QString text() const;
+ virtual TQString text() const;
/**
* Used to enable/disable scrolling manually
@@ -58,8 +58,8 @@ class ScrollingLabel : public QWidget
protected:
- virtual void paintEvent(QPaintEvent *);
- virtual void resizeEvent(QResizeEvent *);
+ virtual void paintEvent(TQPaintEvent *);
+ virtual void resizeEvent(TQResizeEvent *);
protected slots: