summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/qmake/generators/makefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/qmake/generators/makefile.h')
-rw-r--r--tqtinterface/qt4/qmake/generators/makefile.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/tqtinterface/qt4/qmake/generators/makefile.h b/tqtinterface/qt4/qmake/generators/makefile.h
index c736a94..a33daff 100644
--- a/tqtinterface/qt4/qmake/generators/makefile.h
+++ b/tqtinterface/qt4/qmake/generators/makefile.h
@@ -88,9 +88,9 @@ protected:
TQString cleanFilePath(const TQString &file) const;
bool generateMocList(const TQString &fn);
- TQString tqfindMocSource(const TQString &tqmoc_file) const;
- TQString tqfindMocDestination(const TQString &src_file) const;
- virtual TQStringList &tqfindDependencies(const TQString &file);
+ TQString findMocSource(const TQString &tqmoc_file) const;
+ TQString findMocDestination(const TQString &src_file) const;
+ virtual TQStringList &findDependencies(const TQString &file);
void setNoIO(bool o);
bool noIO() const;
@@ -119,8 +119,8 @@ protected:
virtual void writePrlFile(TQTextStream &);
//make sure libraries are found
- virtual bool tqfindLibraries();
- virtual TQString tqfindDependency(const TQString &);
+ virtual bool findLibraries();
+ virtual TQString findDependency(const TQString &);
void setProcessedDependencies(const TQString &file, bool b);
bool processedDependencies(const TQString &file);
@@ -146,19 +146,19 @@ public:
virtual bool openOutput(TQFile &) const;
};
-inline TQString MakefileGenerator::tqfindMocSource(const TQString &tqmoc_file) const
+inline TQString MakefileGenerator::findMocSource(const TQString &tqmoc_file) const
{
TQString tmp = cleanFilePath(tqmoc_file);
- if (tqmocablesFromTQMOC.tqcontains(tmp))
+ if (tqmocablesFromTQMOC.contains(tmp))
return tqmocablesFromTQMOC[tmp];
else
return TQString("");
}
-inline TQString MakefileGenerator::tqfindMocDestination(const TQString &src_file) const
+inline TQString MakefileGenerator::findMocDestination(const TQString &src_file) const
{
TQString tmp = cleanFilePath(src_file);
- if (tqmocablesToTQMOC.tqcontains(tmp))
+ if (tqmocablesToTQMOC.contains(tmp))
return tqmocablesToTQMOC[tmp];
else
return TQString("");
@@ -179,10 +179,10 @@ inline bool MakefileGenerator::noIO() const
inline TQString MakefileGenerator::defaultInstall(const TQString &)
{ return TQString(""); }
-inline bool MakefileGenerator::tqfindLibraries()
+inline bool MakefileGenerator::findLibraries()
{ return TRUE; }
-inline TQString MakefileGenerator::tqfindDependency(const TQString &)
+inline TQString MakefileGenerator::findDependency(const TQString &)
{ return TQString(""); }
inline MakefileGenerator::~MakefileGenerator()