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-11-22 05:29:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-22 05:32:57 +0300
commit35f2e4a35c32acafaa4c1a7f7d639536e87487ff (patch)
tree58ef164fba73e561ad979307363e64221e47b980 /source/blender/blenkernel
parent340364557594206deec40356d719e51344253fe6 (diff)
Cleanup: BKE_suggestions -> BKE_text_suggestions
The term suggestions on it's own is too ambiguous, use BKE_text prefix.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_text_suggestions.h (renamed from source/blender/blenkernel/BKE_suggestions.h)6
-rw-r--r--source/blender/blenkernel/CMakeLists.txt4
-rw-r--r--source/blender/blenkernel/intern/text_suggestions.c (renamed from source/blender/blenkernel/intern/suggestions.c)2
3 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/blenkernel/BKE_suggestions.h b/source/blender/blenkernel/BKE_text_suggestions.h
index 78da2eee402..80c38719f96 100644
--- a/source/blender/blenkernel/BKE_suggestions.h
+++ b/source/blender/blenkernel/BKE_text_suggestions.h
@@ -16,8 +16,8 @@
* The Original Code is Copyright (C) 2008, Blender Foundation
* All rights reserved.
*/
-#ifndef __BKE_SUGGESTIONS_H__
-#define __BKE_SUGGESTIONS_H__
+#ifndef __BKE_TEXT_SUGGESTIONS_H__
+#define __BKE_TEXT_SUGGESTIONS_H__
/** \file
* \ingroup bke
@@ -84,4 +84,4 @@ void texttool_docs_clear(void);
}
#endif
-#endif
+#endif /* __BKE_TEXT_SUGGESTIONS_H__ */
diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt
index fd8a3db1b63..f80744feecc 100644
--- a/source/blender/blenkernel/CMakeLists.txt
+++ b/source/blender/blenkernel/CMakeLists.txt
@@ -217,8 +217,8 @@ set(SRC
intern/subdiv_stats.c
intern/subdiv_topology.c
intern/subsurf_ccg.c
- intern/suggestions.c
intern/text.c
+ intern/text_suggestions.c
intern/texture.c
intern/tracking.c
intern/tracking_auto.c
@@ -352,8 +352,8 @@ set(SRC
BKE_subdiv_mesh.h
BKE_subdiv_topology.h
BKE_subsurf.h
- BKE_suggestions.h
BKE_text.h
+ BKE_text_suggestions.h
BKE_texture.h
BKE_tracking.h
BKE_undo_system.h
diff --git a/source/blender/blenkernel/intern/suggestions.c b/source/blender/blenkernel/intern/text_suggestions.c
index 47d536f4f4f..64087369173 100644
--- a/source/blender/blenkernel/intern/suggestions.c
+++ b/source/blender/blenkernel/intern/text_suggestions.c
@@ -30,7 +30,7 @@
#include "BLI_string.h"
#include "DNA_text_types.h"
-#include "BKE_suggestions.h"
+#include "BKE_text_suggestions.h" /* Own include. */
/**********************/
/* Static definitions */