diff options
author | Timothy Pearson <[email protected]> | 2012-07-08 23:41:56 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-07-08 23:41:56 -0500 |
commit | 2db1f7d324eb3a6c268ec9ecdbeff6a0f5c2d2f6 (patch) | |
tree | 449b174a7f079fc7d8a3abe0b3038b31a304427f /src/ldapmgr.cpp | |
parent | e7690bbfd4ea13d70d612f9dcd474ed3dc7709c0 (diff) | |
download | kcmldapmanager-2db1f7d324eb3a6c268ec9ecdbeff6a0f5c2d2f6.tar.gz kcmldapmanager-2db1f7d324eb3a6c268ec9ecdbeff6a0f5c2d2f6.zip |
Remove unneeded readFullLineFromPtyProcess function
Diffstat (limited to 'src/ldapmgr.cpp')
-rw-r--r-- | src/ldapmgr.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/ldapmgr.cpp b/src/ldapmgr.cpp index 36224e6..d152ebe 100644 --- a/src/ldapmgr.cpp +++ b/src/ldapmgr.cpp @@ -847,15 +847,6 @@ void LDAPConfig::removeSelectedService() { updateAllInformation(); } -TQString readFullLineFromPtyProcess(PtyProcess* proc) { - TQString result = ""; - while ((!result.contains("\n")) && (!result.contains(":")) && (!result.contains(">"))) { - result = result + TQString(proc->readLine(false)); - tqApp->processEvents(); - } - return result; -} - int LDAPConfig::setPasswordForUser(LDAPUserInfo user, TQString *errstr) { if (user.new_password == "") { return 0; |