summaryrefslogtreecommitdiffstats
path: root/korn/kornshell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/kornshell.cpp')
-rw-r--r--korn/kornshell.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/korn/kornshell.cpp b/korn/kornshell.cpp
index 553cac42..f7d30358 100644
--- a/korn/kornshell.cpp
+++ b/korn/kornshell.cpp
@@ -32,8 +32,8 @@
#include <tqtimer.h>
-KornShell::KornShell( TQWidget * parent, const char * name )
- : TQWidget( parent, name ),
+KornShell::KornShell( TQWidget * tqparent, const char * name )
+ : TQWidget( tqparent, name ),
_config( new KConfig( "kornrc" ) ),
_box( 0 ),
_configDialog( 0 ),
@@ -99,9 +99,9 @@ void KornShell::readConfig()
KOrnPassword::setUseWallet( _config->readBoolEntry( "usewallet", false ) );
if( tqlayout == 'H' )
- _box = new HVContainer( Qt::Horizontal, this, "horizontal container" );
+ _box = new HVContainer( TQt::Horizontal, this, "horizontal container" );
else if( tqlayout == 'V' )
- _box = new HVContainer( Qt::Vertical, this, "vertical container" );
+ _box = new HVContainer( TQt::Vertical, this, "vertical container" );
else
_box = new DockedContainer( this, "docked container" );
@@ -135,14 +135,14 @@ void KornShell::slotDialogClosed()
_configDialog->deleteLater(); _configDialog = 0;
//At this time, just delete all widgets and make a new one.
- //Maybe, this should tqreplaces later by a better variant.
+ //Maybe, this should replaces later by a better variant.
slotApply();
}
void KornShell::slotApply()
{
//At this time, just delete all widgets and make a new one.
- //Maybe, this should tqreplaces later by a better variant.
+ //Maybe, this should replaces later by a better variant.
delete _box; _box = 0;