summaryrefslogtreecommitdiffstats
path: root/kaddressbook/incsearchwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/incsearchwidget.cpp')
-rw-r--r--kaddressbook/incsearchwidget.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/incsearchwidget.cpp b/kaddressbook/incsearchwidget.cpp
index 74349bd7..6b346327 100644
--- a/kaddressbook/incsearchwidget.cpp
+++ b/kaddressbook/incsearchwidget.cpp
@@ -17,8 +17,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include <tqapplication.h>
@@ -37,8 +37,8 @@
#include "incsearchwidget.h"
-IncSearchWidget::IncSearchWidget( TQWidget *parent, const char *name )
- : TQWidget( parent, name )
+IncSearchWidget::IncSearchWidget( TQWidget *tqparent, const char *name )
+ : TQWidget( tqparent, name )
{
TQHBoxLayout *tqlayout = new TQHBoxLayout( this, 2, KDialog::spacingHint() );
@@ -159,10 +159,10 @@ void IncSearchWidget::clear()
void IncSearchWidget::keyPressEvent( TQKeyEvent *event )
{
- if ( event->key() == Qt::Key_Up ) {
+ if ( event->key() == TQt::Key_Up ) {
event->accept();
emit scrollUp();
- } else if ( event->key() == Qt::Key_Down ) {
+ } else if ( event->key() == TQt::Key_Down ) {
event->accept();
emit scrollDown();
}