cleanups
This commit is contained in:
parent
becce939a2
commit
53d0de2a9f
|
@ -103,7 +103,6 @@ bool cmQTWrapCPPCommand::InitialPass(std::vector<std::string> const& args)
|
|||
// add starting depends
|
||||
file.GetDepends().push_back(hname);
|
||||
m_WrapClasses.push_back(file);
|
||||
m_OriginalNames.push_back(curr.GetSourceName());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -123,7 +122,13 @@ void cmQTWrapCPPCommand::FinalPass()
|
|||
// wrap all the .h files
|
||||
depends.push_back(moc_exe);
|
||||
|
||||
const char * GENERATED_QT_FILES_value=
|
||||
m_Makefile->GetDefinition("GENERATED_QT_FILES");
|
||||
std::string moc_list("");
|
||||
if (GENERATED_QT_FILES_value!=0)
|
||||
{
|
||||
moc_list=moc_list+GENERATED_QT_FILES_value;
|
||||
}
|
||||
|
||||
for(int classNum = 0; classNum < lastClass; classNum++)
|
||||
{
|
||||
|
|
|
@ -68,7 +68,6 @@ private:
|
|||
* List of header files that pprovide the source for m_WrapClasses.
|
||||
*/
|
||||
std::vector<std::string> m_WrapHeaders;
|
||||
std::vector<std::string> m_OriginalNames;
|
||||
std::string m_LibraryName;
|
||||
std::string m_SourceList;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue