[Bf-blender-cvs] [baca87c] temp_widgets_c++_experiment: Use .cc extension instead of .cpp for C++ files

Julian Eisel noreply at git.blender.org
Sat Dec 19 15:09:30 CET 2015


Commit: baca87c20cc2244583fc5d4e1e19a1219205122d
Author: Julian Eisel
Date:   Sat Dec 19 15:05:56 2015 +0100
Branches: temp_widgets_c++_experiment
https://developer.blender.org/rBbaca87c20cc2244583fc5d4e1e19a1219205122d

Use .cc extension instead of .cpp for C++ files

@sergey suggested to change since .cpp would be C-Pre-Processor.

===================================================================

M	source/blender/windowmanager/CMakeLists.txt
A	source/blender/windowmanager/intern/widgets/wm_widget.cc
D	source/blender/windowmanager/intern/widgets/wm_widget.cpp
A	source/blender/windowmanager/intern/widgets/wm_widgetgroup.cc
D	source/blender/windowmanager/intern/widgets/wm_widgetgroup.cpp
A	source/blender/windowmanager/intern/widgets/wm_widgetgrouptype.cc
D	source/blender/windowmanager/intern/widgets/wm_widgetgrouptype.cpp
A	source/blender/windowmanager/intern/widgets/wm_widgetmap.cc
D	source/blender/windowmanager/intern/widgets/wm_widgetmap.cpp
A	source/blender/windowmanager/intern/widgets/wm_widgetmaptype.cc
D	source/blender/windowmanager/intern/widgets/wm_widgetmaptype.cpp
A	source/blender/windowmanager/intern/widgets/wm_widgets_c_api.cc
D	source/blender/windowmanager/intern/widgets/wm_widgets_c_api.cpp

===================================================================

diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt
index 11efb0d..c12e84e 100644
--- a/source/blender/windowmanager/CMakeLists.txt
+++ b/source/blender/windowmanager/CMakeLists.txt
@@ -85,12 +85,12 @@ set(SRC
 	wm_window.h
 	3d_widgets/ui_widget_library.h
 
-	intern/widgets/wm_widget.cpp
-	intern/widgets/wm_widgetgroup.cpp
-	intern/widgets/wm_widgetgrouptype.cpp
-	intern/widgets/wm_widgetmap.cpp
-	intern/widgets/wm_widgetmaptype.cpp
-	intern/widgets/wm_widgets_c_api.cpp
+	intern/widgets/wm_widget.cc
+	intern/widgets/wm_widgetgroup.cc
+	intern/widgets/wm_widgetgrouptype.cc
+	intern/widgets/wm_widgetmap.cc
+	intern/widgets/wm_widgetmaptype.cc
+	intern/widgets/wm_widgets_c_api.cc
 
 	intern/widgets/wm_widget.h
 	intern/widgets/wm_widgetgroup.h
diff --git a/source/blender/windowmanager/intern/widgets/wm_widget.cpp b/source/blender/windowmanager/intern/widgets/wm_widget.cc
similarity index 100%
rename from source/blender/windowmanager/intern/widgets/wm_widget.cpp
rename to source/blender/windowmanager/intern/widgets/wm_widget.cc
diff --git a/source/blender/windowmanager/intern/widgets/wm_widgetgroup.cpp b/source/blender/windowmanager/intern/widgets/wm_widgetgroup.cc
similarity index 100%
rename from source/blender/windowmanager/intern/widgets/wm_widgetgroup.cpp
rename to source/blender/windowmanager/intern/widgets/wm_widgetgroup.cc
diff --git a/source/blender/windowmanager/intern/widgets/wm_widgetgrouptype.cpp b/source/blender/windowmanager/intern/widgets/wm_widgetgrouptype.cc
similarity index 100%
rename from source/blender/windowmanager/intern/widgets/wm_widgetgrouptype.cpp
rename to source/blender/windowmanager/intern/widgets/wm_widgetgrouptype.cc
diff --git a/source/blender/windowmanager/intern/widgets/wm_widgetmap.cpp b/source/blender/windowmanager/intern/widgets/wm_widgetmap.cc
similarity index 100%
rename from source/blender/windowmanager/intern/widgets/wm_widgetmap.cpp
rename to source/blender/windowmanager/intern/widgets/wm_widgetmap.cc
diff --git a/source/blender/windowmanager/intern/widgets/wm_widgetmaptype.cpp b/source/blender/windowmanager/intern/widgets/wm_widgetmaptype.cc
similarity index 100%
rename from source/blender/windowmanager/intern/widgets/wm_widgetmaptype.cpp
rename to source/blender/windowmanager/intern/widgets/wm_widgetmaptype.cc
diff --git a/source/blender/windowmanager/intern/widgets/wm_widgets_c_api.cpp b/source/blender/windowmanager/intern/widgets/wm_widgets_c_api.cc
similarity index 100%
rename from source/blender/windowmanager/intern/widgets/wm_widgets_c_api.cpp
rename to source/blender/windowmanager/intern/widgets/wm_widgets_c_api.cc




More information about the Bf-blender-cvs mailing list