summaryrefslogtreecommitdiffstats
path: root/amarok/src/hintlineedit.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-18 03:28:57 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-18 03:28:57 +0000
commit1d9d9f5ce46f0220f7b1b350f5ad4e6dc5079ac6 (patch)
tree728d80ad748a95d7aa27ee020706dbe985e0e8cb /amarok/src/hintlineedit.h
parente9db3e45ed0189bbe18125b120da394a5bc8a832 (diff)
downloadamarok-1d9d9f5ce46f0220f7b1b350f5ad4e6dc5079ac6.tar.gz
amarok-1d9d9f5ce46f0220f7b1b350f5ad4e6dc5079ac6.zip
Finish TQt4 porting of Amarok
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1228394 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amarok/src/hintlineedit.h')
-rw-r--r--amarok/src/hintlineedit.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/amarok/src/hintlineedit.h b/amarok/src/hintlineedit.h
index 851a4fb8..fb3a0e65 100644
--- a/amarok/src/hintlineedit.h
+++ b/amarok/src/hintlineedit.h
@@ -10,13 +10,14 @@ class TQWidget;
class HintLineEdit : public KLineEdit
{
Q_OBJECT
+ TQ_OBJECT
public:
- HintLineEdit( const TQString &hint, const TQString &text, TQWidget *parent = 0, const char *name = 0 );
- HintLineEdit( const TQString &text, TQWidget *parent = 0, const char *name = 0 );
- HintLineEdit( TQWidget *parent = 0, const char *name = 0 );
+ HintLineEdit( const TQString &hint, const TQString &text, TQWidget *tqparent = 0, const char *name = 0 );
+ HintLineEdit( const TQString &text, TQWidget *tqparent = 0, const char *name = 0 );
+ HintLineEdit( TQWidget *tqparent = 0, const char *name = 0 );
virtual ~HintLineEdit();
- virtual TQObject *parent();
+ virtual TQObject *tqparent();
virtual void setHint( const TQString &hint );
private:
void init();