diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:39 -0600 |
commit | eba1d381626d92b860239417f21d813f02ee6394 (patch) | |
tree | a1d29560015d98b2ad5aa047f919b8a81e0e9c4b /src/gvcore/clicklineedit.cpp | |
parent | d0bdd0d7a768f9935b521f3bd12a4cd72739b96f (diff) | |
download | gwenview-eba1d381626d92b860239417f21d813f02ee6394.tar.gz gwenview-eba1d381626d92b860239417f21d813f02ee6394.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/gvcore/clicklineedit.cpp')
-rw-r--r-- | src/gvcore/clicklineedit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gvcore/clicklineedit.cpp b/src/gvcore/clicklineedit.cpp index 58c09ac..dfbe3bb 100644 --- a/src/gvcore/clicklineedit.cpp +++ b/src/gvcore/clicklineedit.cpp @@ -40,14 +40,14 @@ ClickLineEdit::ClickLineEdit(TQWidget *parent, const char* name ) : void ClickLineEdit::setClickMessage( const TQString &msg ) { mClickMessage = msg; - tqrepaint(); + repaint(); } void ClickLineEdit::setText( const TQString &txt ) { mDrawClickMsg = txt.isEmpty(); - tqrepaint(); + repaint(); KLineEdit::setText( txt ); } @@ -86,7 +86,7 @@ void ClickLineEdit::focusInEvent( TQFocusEvent *ev ) { if ( mDrawClickMsg == true ) { mDrawClickMsg = false; - tqrepaint(); + repaint(); } TQLineEdit::focusInEvent( ev ); } @@ -96,7 +96,7 @@ void ClickLineEdit::focusOutEvent( TQFocusEvent *ev ) { if ( text().isEmpty() ) { mDrawClickMsg = true; - tqrepaint(); + repaint(); } TQLineEdit::focusOutEvent( ev ); } |