summaryrefslogtreecommitdiffstats
path: root/smb4k/core/smb4kpasswordhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/core/smb4kpasswordhandler.cpp')
-rw-r--r--smb4k/core/smb4kpasswordhandler.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/smb4k/core/smb4kpasswordhandler.cpp b/smb4k/core/smb4kpasswordhandler.cpp
index 421ccde..ab8abad 100644
--- a/smb4k/core/smb4kpasswordhandler.cpp
+++ b/smb4k/core/smb4kpasswordhandler.cpp
@@ -323,13 +323,13 @@ bool Smb4KPasswordHandler::askpass( const TQString &workgroup, const TQString &h
// the edit line for the user to enable/disable the OK button.
if ( user_edit )
{
- connect( user_edit, TQT_SIGNAL( textChanged( const TQString & ) ),
- this, TQT_SLOT( slotEnableOKButton( const TQString& ) ) );
+ connect( user_edit, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( slotEnableOKButton( const TQString& ) ) );
}
else
{
- connect( user_combo, TQT_SIGNAL( textChanged( const TQString & ) ),
- this, TQT_SLOT( slotEnableOKButton( const TQString& ) ) );
+ connect( user_combo, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( slotEnableOKButton( const TQString& ) ) );
}
// Process the authentication data:
@@ -355,8 +355,8 @@ bool Smb4KPasswordHandler::askpass( const TQString &workgroup, const TQString &h
user_combo->insertStringList( list );
user_combo->setCurrentText( TQString() );
- connect( user_combo, TQT_SIGNAL( activated( const TQString & ) ),
- this, TQT_SLOT( slotGetPassword( const TQString & ) ) );
+ connect( user_combo, TQ_SIGNAL( activated( const TQString & ) ),
+ this, TQ_SLOT( slotGetPassword( const TQString & ) ) );
user_combo->setFocus();
}
@@ -786,10 +786,10 @@ void Smb4KPasswordHandler::writeToSMBConfFile( Smb4KAuthInfo *authInfo )
TDEProcess *p = new TDEProcess();
p->setUseShell( true );
- connect( p, TQT_SIGNAL( receivedStdout( TDEProcess *, char *, int ) ),
- this, TQT_SLOT( slotReceivePassword( TDEProcess *, char *, int ) ) );
- connect( p, TQT_SIGNAL( processExited( TDEProcess * ) ),
- this, TQT_SLOT( slotWritePassword( TDEProcess * ) ) );
+ connect( p, TQ_SIGNAL( receivedStdout( TDEProcess *, char *, int ) ),
+ this, TQ_SLOT( slotReceivePassword( TDEProcess *, char *, int ) ) );
+ connect( p, TQ_SIGNAL( processExited( TDEProcess * ) ),
+ this, TQ_SLOT( slotWritePassword( TDEProcess * ) ) );
*p << TQString( "smbutil crypt %1" ).arg( m_nsmbrc_auth.password() );
@@ -800,7 +800,7 @@ void Smb4KPasswordHandler::writeToSMBConfFile( Smb4KAuthInfo *authInfo )
/////////////////////////////////////////////////////////////////////////////
-// TQT_SLOT IMPLEMENTATIONS
+// SLOT IMPLEMENTATIONS
/////////////////////////////////////////////////////////////////////////////