summaryrefslogtreecommitdiffstats
path: root/qmake/project.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
commit41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch)
tree6d4d5407c000add30aa78630e009c0e5d633e440 /qmake/project.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
Diffstat (limited to 'qmake/project.cpp')
-rw-r--r--qmake/project.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/qmake/project.cpp b/qmake/project.cpp
index d905b089..f60dba06 100644
--- a/qmake/project.cpp
+++ b/qmake/project.cpp
@@ -90,19 +90,19 @@ TQStringList qmake_mkspec_paths()
ret << (QT_INSTALL_PREFIX + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
- ret << (qInstallPath() + concat);
+ ret << (tqInstallPath() + concat);
#endif
#ifdef QT_INSTALL_DATA
ret << (QT_INSTALL_DATA + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
- ret << (qInstallPathData() + concat);
+ ret << (tqInstallPathData() + concat);
#endif
/* prefer $QTDIR if it is set */
if (getenv("QTDIR"))
ret << getenv("QTDIR");
- ret << qInstallPathData();
+ ret << tqInstallPathData();
return ret;
}
@@ -931,13 +931,13 @@ TQMakeProject::doProjectTest(const TQString& func, TQStringList args, TQMap<TQSt
feature_roots << (QT_INSTALL_PREFIX + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
- feature_roots << (qInstallPath() + concat);
+ feature_roots << (tqInstallPath() + concat);
#endif
#ifdef QT_INSTALL_DATA
feature_roots << (QT_INSTALL_DATA + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
- feature_roots << (qInstallPathData() + concat);
+ feature_roots << (tqInstallPathData() + concat);
#endif
for(TQStringList::Iterator it = feature_roots.begin(); it != feature_roots.end(); ++it) {
TQString prf = (*it) + TQDir::separator() + file;