summaryrefslogtreecommitdiffstats
path: root/src/manageciscocert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/manageciscocert.cpp')
-rw-r--r--src/manageciscocert.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manageciscocert.cpp b/src/manageciscocert.cpp
index dc336f1..3c78ce4 100644
--- a/src/manageciscocert.cpp
+++ b/src/manageciscocert.cpp
@@ -103,7 +103,7 @@ void ManageCiscoCert::deleteCertClicked()
if ( GlobalConfig->KvpncDebugLevel > 2 )
GlobalConfig->appendLogEntry ( i18n ( "Process (%1) started." ).arg ("cisco_cert_mgr" ),GlobalConfig->debug );
- TQCString password;
+ TQString password;
int result = KPasswordDialog::getPassword(password, i18n("Certificate password"));
if (result == KPasswordDialog::Accepted)
@@ -112,7 +112,7 @@ void ManageCiscoCert::deleteCertClicked()
if ( GlobalConfig->KvpncDebugLevel > 2 )
GlobalConfig->appendLogEntry ( i18n ( "Certicate password got from user, send it..." ),GlobalConfig->debug );
- DeleteProcess->writeToStdin( TQString(password)+"\n");
+ DeleteProcess->writeToStdin( password+"\n");
while (DeleteProcess->isRunning())
{
sleep(1);