summaryrefslogtreecommitdiffstats
path: root/kdecore
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-03-21 21:41:02 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-03-21 21:41:02 +0000
commit2ffa982beb3ba6b6de51ac31e8767cac52624444 (patch)
tree5dc109404c9c016bd05187d69bc723818389b788 /kdecore
parentd2791b75841bf3737a62f2185dfbef7fa33ec3ae (diff)
downloadtdelibs-2ffa982beb3ba6b6de51ac31e8767cac52624444.tar.gz
tdelibs-2ffa982beb3ba6b6de51ac31e8767cac52624444.zip
Fix TQt for Qt4 compilation problem
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1225587 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore')
-rw-r--r--kdecore/kstandarddirs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdecore/kstandarddirs.cpp b/kdecore/kstandarddirs.cpp
index 46939d032..a5ea9e3e7 100644
--- a/kdecore/kstandarddirs.cpp
+++ b/kdecore/kstandarddirs.cpp
@@ -1130,7 +1130,7 @@ TQString KStandardDirs::saveLocation(const char *type,
if (KDE_stat(TQFile::encodeName(fullPath), &st) != 0 || !(S_ISDIR(st.st_mode))) {
if(!create) {
#ifndef NDEBUG
- kdDebug() << TQString("save location %1 doesn't exist").arg(fullPath) << endl;
+ kdDebug() << TQString("save location %1 doesn't exist").tqarg(fullPath) << endl;
#endif
return fullPath;
}