[Bf-blender-cvs] [124f5f5] temp_widgets_c++_experiment: Remove wm_widgets.c!

Julian Eisel noreply at git.blender.org
Wed Dec 23 22:09:46 CET 2015


Commit: 124f5f584a97860a5d988a846d4035bdc5e202bd
Author: Julian Eisel
Date:   Wed Dec 23 22:09:02 2015 +0100
Branches: temp_widgets_c++_experiment
https://developer.blender.org/rB124f5f584a97860a5d988a846d4035bdc5e202bd

Remove wm_widgets.c!

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

M	source/blender/windowmanager/CMakeLists.txt
D	source/blender/windowmanager/intern/wm_widgets.c

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

diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt
index c12e84e..62ee5d1 100644
--- a/source/blender/windowmanager/CMakeLists.txt
+++ b/source/blender/windowmanager/CMakeLists.txt
@@ -66,7 +66,6 @@ set(SRC
 	intern/wm_subwindow.c
 	intern/wm_window.c
 	intern/wm_stereo.c
-	intern/wm_widgets.c
 	intern/wm_generic_widgets.c
 	3d_widgets/arrow_widget.c
 	3d_widgets/cube_widget.c
diff --git a/source/blender/windowmanager/intern/wm_widgets.c b/source/blender/windowmanager/intern/wm_widgets.c
deleted file mode 100644
index 58fe9b5..0000000
--- a/source/blender/windowmanager/intern/wm_widgets.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * ***** BEGIN GPL LICENSE BLOCK *****
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version. 
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * The Original Code is Copyright (C) 2014 Blender Foundation.
- * All rights reserved.
- *
- * Contributor(s): Blender Foundation, 2008
- *
- * ***** END GPL LICENSE BLOCK *****
- */
-
-/** \file blender/windowmanager/intern/wm_widgets.c
- *  \ingroup wm
- *
- * Window management, widget API.
- */
-
-#include <stdlib.h>
-#include <string.h>
-
-#include "DNA_screen_types.h"
-#include "DNA_scene_types.h"
-#include "DNA_windowmanager_types.h"
-#include "DNA_view3d_types.h"
-#include "DNA_userdef_types.h"
-
-#include "MEM_guardedalloc.h"
-
-#include "BLI_listbase.h"
-#include "BLI_ghash.h"
-#include "BLI_string.h"
-#include "BLI_math.h"
-#include "BLI_path_util.h"
-
-#include "BKE_context.h"
-#include "BKE_idprop.h"
-#include "BKE_global.h"
-#include "BKE_main.h"
-#include "BKE_report.h"
-#include "BKE_scene.h"
-#include "BKE_screen.h"
-
-#include "ED_view3d.h"
-#include "ED_screen.h"
-#include "ED_util.h"
-
-#include "WM_api.h"
-#include "WM_types.h"
-#include "wm.h"
-#include "wm_window.h"
-#include "wm_event_system.h"
-#include "wm_event_types.h"
-#include "wm_draw.h"
-
-#include "GL/glew.h"
-#include "GPU_select.h"
-
-#include "RNA_access.h"
-#include "RNA_define.h"
-#include "BPY_extern.h"
-
-




More information about the Bf-blender-cvs mailing list