summaryrefslogtreecommitdiffstats
path: root/kuickshow/src/filefinder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kuickshow/src/filefinder.cpp')
-rw-r--r--kuickshow/src/filefinder.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kuickshow/src/filefinder.cpp b/kuickshow/src/filefinder.cpp
index 35bb382a..fc00b84c 100644
--- a/kuickshow/src/filefinder.cpp
+++ b/kuickshow/src/filefinder.cpp
@@ -26,8 +26,8 @@
#include "filefinder.h"
-FileFinder::FileFinder( TQWidget *parent, const char *name )
- : KLineEdit( parent, name )
+FileFinder::FileFinder( TQWidget *tqparent, const char *name )
+ : KLineEdit( tqparent, name )
{
// make this widget just as large, as the font is + 8 Pixels
int height = fontMetrics().height() + 8;
@@ -49,7 +49,7 @@ FileFinder::FileFinder( TQWidget *parent, const char *name )
comp->setReplaceEnv( true );
setCompletionObject( comp, false );
setAutoDeleteCompletionObject( true );
- setFocusPolicy( ClickFocus );
+ setFocusPolicy( TQ_ClickFocus );
KConfig *config = KGlobal::config();
KConfigGroupSaver cs( config, "GeneralConfiguration" );
@@ -87,7 +87,7 @@ void FileFinder::keyPressEvent( TQKeyEvent *e )
void FileFinder::hide()
{
KLineEdit::hide();
- parentWidget()->setFocus();
+ tqparentWidget()->setFocus();
}
void FileFinder::slotAccept( const TQString& dir )