diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:28:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:28:26 -0600 |
commit | d3afa6baf98ef5ac191996cc9b909ff9074c168c (patch) | |
tree | a1e1247371cd17715f83036a3664755206ab9ba2 /tdeprint/tdeprintcheck.cpp | |
parent | 12f3d421cd2991c0e3f96994efb836ce244172ff (diff) | |
download | tdelibs-d3afa6baf98ef5ac191996cc9b909ff9074c168c.tar.gz tdelibs-d3afa6baf98ef5ac191996cc9b909ff9074c168c.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'tdeprint/tdeprintcheck.cpp')
-rw-r--r-- | tdeprint/tdeprintcheck.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/tdeprintcheck.cpp b/tdeprint/tdeprintcheck.cpp index 92178f0f4..a1985e804 100644 --- a/tdeprint/tdeprintcheck.cpp +++ b/tdeprint/tdeprintcheck.cpp @@ -80,7 +80,7 @@ bool KdeprintChecker::checkURL(const KURL& url) else if (prot == "exec") return checkExec(url); else if (prot == "file" || prot == "dir") - return KStandardDirs::exists(url.url()); + return TDEStandardDirs::exists(url.url()); else if (prot == "service") return checkService(url); return false; @@ -117,7 +117,7 @@ bool KdeprintChecker::checkConfig(const KURL& url) bool KdeprintChecker::checkExec(const KURL& url) { QString execname(url.path().mid(1)); - return !(KStandardDirs::findExe(execname).isEmpty()); + return !(TDEStandardDirs::findExe(execname).isEmpty()); } bool KdeprintChecker::checkService(const KURL& url) |