diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:22:42 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:22:42 -0600 |
commit | cb0e1a05c8784a077e210209acfa3f425cef757c (patch) | |
tree | d79f2e4ba99eea05e03a7a19180ed5fcd6ad883c | |
parent | 305fdb9ff4783d0bcd227e7ced7a8e7545349be0 (diff) | |
download | smb4k-cb0e1a05c8784a077e210209acfa3f425cef757c.tar.gz smb4k-cb0e1a05c8784a077e210209acfa3f425cef757c.zip |
Rename additional global TQt functions
-rw-r--r-- | smb4k/core/smb4kfileio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smb4k/core/smb4kfileio.cpp b/smb4k/core/smb4kfileio.cpp index 75fddd1..d906e05 100644 --- a/smb4k/core/smb4kfileio.cpp +++ b/smb4k/core/smb4kfileio.cpp @@ -1344,7 +1344,7 @@ void Smb4KFileIO::processSudoers() // Create a temporary file and write the data to it: TQCString template_string = tempDir().local8Bit()+"/XXXXXX"; char tmp[template_string.length()+1]; - (void) qstrncpy( tmp, template_string, template_string.length()+1 ); + (void) tqstrncpy( tmp, template_string, template_string.length()+1 ); TQFile temp_file; int file_descriptor; @@ -1607,7 +1607,7 @@ void Smb4KFileIO::processSuperTab() // Create a temporary file and write the data to it: TQCString template_string = tempDir().local8Bit()+"/XXXXXX"; char tmp[template_string.length()+1]; - (void) qstrncpy( tmp, template_string, template_string.length()+1 ); + (void) tqstrncpy( tmp, template_string, template_string.length()+1 ); TQFile temp_file; int file_descriptor; |