diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:34:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:34:45 -0600 |
commit | 6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71 (patch) | |
tree | 35c87e21025b800ecd5840f96a9638c964e930b8 /kppp | |
parent | b251e315b57c6665336289a940e9b1d4a179e463 (diff) | |
download | tdenetwork-6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71.tar.gz tdenetwork-6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71.zip |
Rename additional global TQt functions
Diffstat (limited to 'kppp')
-rw-r--r-- | kppp/ruleset.cpp | 2 | ||||
-rw-r--r-- | kppp/runtests.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kppp/ruleset.cpp b/kppp/ruleset.cpp index 723d5f2b..e60e4be1 100644 --- a/kppp/ruleset.cpp +++ b/kppp/ruleset.cpp @@ -80,7 +80,7 @@ int RuleSet::dayNameToInt(const char *s) { "sunday", NULL}; for(int i = 0; name[i] != NULL; i++) - if(qstricmp(name[i], s) == 0) + if(tqstricmp(name[i], s) == 0) return i; return -1; diff --git a/kppp/runtests.cpp b/kppp/runtests.cpp index a520d116..6e3f8f21 100644 --- a/kppp/runtests.cpp +++ b/kppp/runtests.cpp @@ -62,7 +62,7 @@ extern const char* pppdPath(); static void decode_version (const char *_buf, int *version, int *modification, int *patch) { - char *buffer = qstrdup(_buf); + char *buffer = tqstrdup(_buf); char *buf = buffer; *version = (int) strtoul (buf, &buf, 10); *modification = 0; |