Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-17 07:35:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-17 07:35:41 +0300
commit812f23849422e50b2834434c11072de8eb8bda7e (patch)
tree0e37eff619a90abee07fcde5d3feb7eacf475f5f /build_files/cmake/cmake_qtcreator_project.py
parentf7295ad6d9653d31ce7aea2327c26aba893eb02c (diff)
pep8 cleanup and remove unused vars/imports
Diffstat (limited to 'build_files/cmake/cmake_qtcreator_project.py')
-rw-r--r--build_files/cmake/cmake_qtcreator_project.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/build_files/cmake/cmake_qtcreator_project.py b/build_files/cmake/cmake_qtcreator_project.py
index 3adce66fade..ca214338298 100644
--- a/build_files/cmake/cmake_qtcreator_project.py
+++ b/build_files/cmake/cmake_qtcreator_project.py
@@ -45,11 +45,6 @@ def source_list(path, filename_check=None):
# extension checking
-def is_c_header(filename):
- ext = splitext(filename)[1]
- return (ext in (".h", ".hpp", ".hxx"))
-
-
def is_cmake(filename):
ext = splitext(filename)[1]
return (ext == ".cmake") or (filename == "CMakeLists.txt")