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>2019-05-02 10:13:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-02 11:25:36 +0300
commit22c293f6d606664ed459200905b9d87a772ec986 (patch)
treeb35a7794906438725fd433a6a43277fe7421c951 /source/blender/makesdna/DNA_workspace_types.h
parent8c478bb915128a6ca7945ca7a82ecaedbbc0f3e0 (diff)
Cleanup: outdated comments, unused define
Diffstat (limited to 'source/blender/makesdna/DNA_workspace_types.h')
-rw-r--r--source/blender/makesdna/DNA_workspace_types.h20
1 files changed, 6 insertions, 14 deletions
diff --git a/source/blender/makesdna/DNA_workspace_types.h b/source/blender/makesdna/DNA_workspace_types.h
index 1fd5e6a952a..2b5d81d02a0 100644
--- a/source/blender/makesdna/DNA_workspace_types.h
+++ b/source/blender/makesdna/DNA_workspace_types.h
@@ -25,9 +25,6 @@
#include "DNA_scene_types.h"
-/* Currently testing, allow to disable. */
-#define USE_WORKSPACE_TOOL
-
#
#
typedef struct bToolRef_Runtime {
@@ -114,14 +111,9 @@ typedef struct WorkSpace {
/** #wmOwnerID. */
ListBase owner_ids;
- /* should be: '#ifdef USE_WORKSPACE_TOOL'. */
-
/** List of #bToolRef */
ListBase tools;
- /**
- * BAD DESIGN WARNING:
- * This is a workaround for the topbar not knowing which tools spec. */
char _pad[4];
int object_mode;
@@ -129,10 +121,10 @@ typedef struct WorkSpace {
/** Enum eWorkSpaceFlags. */
int flags;
- /* Number for workspace tab reordering in the UI. */
+ /** Number for workspace tab reordering in the UI. */
int order;
- /* Info text from modal operators (runtime). */
+ /** Info text from modal operators (runtime). */
char *status_text;
} WorkSpace;
@@ -162,10 +154,10 @@ typedef struct WorkSpace {
typedef struct WorkSpaceDataRelation {
struct WorkSpaceDataRelation *next, *prev;
- /* the data used to identify the relation
- * (e.g. to find screen-layout (= value) from/for a hook) */
+ /** The data used to identify the relation
+ * (e.g. to find screen-layout (= value) from/for a hook). */
void *parent;
- /* The value for this parent-data/workspace relation */
+ /** The value for this parent-data/workspace relation. */
void *value;
} WorkSpaceDataRelation;
@@ -177,7 +169,7 @@ typedef struct WorkSpaceInstanceHook {
WorkSpace *active;
struct WorkSpaceLayout *act_layout;
- /* Needed because we can't change workspaces/layouts in running handler loop,
+ /** Needed because we can't change workspaces/layouts in running handler loop,
* it would break context. */
WorkSpace *temp_workspace_store;
struct WorkSpaceLayout *temp_layout_store;