diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-07-14 13:44:05 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-07-14 13:44:05 (GMT) |
commit | 24f4c279d9d7b4edcb3a0b5703ff9aab5aa1ff40 (patch) | |
tree | dbd736dd9094c484aeb2d062e87afe74804842e2 | |
parent | eacc8da7e5792194788ea91f7518cfc09f60571d (diff) | |
download | CMake-24f4c279d9d7b4edcb3a0b5703ff9aab5aa1ff40.zip CMake-24f4c279d9d7b4edcb3a0b5703ff9aab5aa1ff40.tar.gz CMake-24f4c279d9d7b4edcb3a0b5703ff9aab5aa1ff40.tar.bz2 |
some updates
-rw-r--r-- | Source/cmFLTKWrapUICommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFLTKWrapUICommand.cxx b/Source/cmFLTKWrapUICommand.cxx index b692552..6e0bdc9 100644 --- a/Source/cmFLTKWrapUICommand.cxx +++ b/Source/cmFLTKWrapUICommand.cxx @@ -64,7 +64,7 @@ bool cmFLTKWrapUICommand::InitialPass(std::vector<std::string> const& args) cmSourceFile *curr = m_Makefile->GetSource(i->c_str()); // if we should use the source GUI // to generate .cxx and .h files - if (!curr || !curr->GetPropertyAsBool("WRAP_EXCLUDE")) + if (!curr && !curr->GetPropertyAsBool("WRAP_EXCLUDE")) { cmSourceFile header_file; cmSourceFile source_file; |