summaryrefslogtreecommitdiffstats
path: root/amarok/src/hintlineedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/hintlineedit.cpp')
-rw-r--r--amarok/src/hintlineedit.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/amarok/src/hintlineedit.cpp b/amarok/src/hintlineedit.cpp
index a98a38f6..a5591b3b 100644
--- a/amarok/src/hintlineedit.cpp
+++ b/amarok/src/hintlineedit.cpp
@@ -3,24 +3,24 @@
#include <tqlabel.h>
#include <tqfont.h>
-HintLineEdit::HintLineEdit( const TQString &hint, const TQString &text, TQWidget *parent, const char *name )
+HintLineEdit::HintLineEdit( const TQString &hint, const TQString &text, TQWidget *tqparent, const char *name )
: KLineEdit( text, 0, name )
- , m_vbox( new TQVBox( parent ) )
+ , m_vbox( new TQVBox( tqparent ) )
{
init();
m_hint->setText( hint );
}
-HintLineEdit::HintLineEdit( const TQString &text, TQWidget *parent, const char *name )
+HintLineEdit::HintLineEdit( const TQString &text, TQWidget *tqparent, const char *name )
: KLineEdit( text, 0, name )
- , m_vbox( new TQVBox( parent ) )
+ , m_vbox( new TQVBox( tqparent ) )
{
init();
}
-HintLineEdit::HintLineEdit( TQWidget *parent, const char *name )
+HintLineEdit::HintLineEdit( TQWidget *tqparent, const char *name )
: KLineEdit( 0, name )
- , m_vbox( new TQVBox( parent ) )
+ , m_vbox( new TQVBox( tqparent ) )
{
init();
}
@@ -31,7 +31,7 @@ HintLineEdit::init()
reparent( m_vbox, 0, TQPoint(0,0), true );
m_hint = new TQLabel( m_vbox );
//m_hint->setBuddy( this );
- m_hint->setFocusPolicy( NoFocus );
+ m_hint->setFocusPolicy( TQ_NoFocus );
TQFont font;
font.setPointSize( font.pointSize() - 2);
m_hint->setFont( font );
@@ -50,9 +50,9 @@ HintLineEdit::setHint( const TQString &hint )
}
TQObject *
-HintLineEdit::parent()
+HintLineEdit::tqparent()
{
- return m_vbox->parent();
+ return m_vbox->tqparent();
}
#include "hintlineedit.moc"