diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:34:08 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:34:08 -0600 |
commit | bb7be2361770a435b3e2e8ae2ac4250bf9810bb4 (patch) | |
tree | 3dc3697661e497b5486191491da2ed4cc751b7fc /src/svnqt/url.cpp | |
parent | 40e169496670c40004f7386a23f7c03d9aeac3e0 (diff) | |
download | tdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.tar.gz tdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/svnqt/url.cpp')
-rw-r--r-- | src/svnqt/url.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svnqt/url.cpp b/src/svnqt/url.cpp index 2478997..6f55356 100644 --- a/src/svnqt/url.cpp +++ b/src/svnqt/url.cpp @@ -64,10 +64,10 @@ namespace svn { bool cs = false; if ( - url.tqstartsWith("file://",cs) || - url.tqstartsWith("/") || - url.tqstartsWith("svn+file://",cs) || - url.tqstartsWith("ksvn+file://",cs) ) + url.startsWith("file://",cs) || + url.startsWith("/") || + url.startsWith("svn+file://",cs) || + url.startsWith("ksvn+file://",cs) ) { return true; } |