summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-07-08 23:41:56 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-07-08 23:41:56 -0500
commit2db1f7d324eb3a6c268ec9ecdbeff6a0f5c2d2f6 (patch)
tree449b174a7f079fc7d8a3abe0b3038b31a304427f
parente7690bbfd4ea13d70d612f9dcd474ed3dc7709c0 (diff)
downloadkcmldapmanager-2db1f7d3.tar.gz
kcmldapmanager-2db1f7d3.zip
Remove unneeded readFullLineFromPtyProcess function
-rw-r--r--src/ldapmgr.cpp9
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;