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>2013-10-23 06:52:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-23 06:52:27 +0400
commit304a32bf1f1e9a5b69c9ab938e80919c50a601ed (patch)
tree78ae0d2b9a4ea7daf29c8ded9dd1d90a1fa047d7 /source/blender/editors/space_text
parent8748840564150e62c537c14172528b2d12e43e9c (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/space_text.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c
index a0659d5ce62..ee64d680319 100644
--- a/source/blender/editors/space_text/space_text.c
+++ b/source/blender/editors/space_text/space_text.c
@@ -475,14 +475,14 @@ static void text_drop_copy(wmDrag *drag, wmDropBox *drop)
static int text_drop_paste_poll(bContext *UNUSED(C), wmDrag *drag, const wmEvent *UNUSED(event))
{
if (drag->type == WM_DRAG_ID)
- return TRUE;
+ return true;
- return FALSE;
+ return false;
}
static void text_drop_paste(wmDrag *drag, wmDropBox *drop)
{
- RNA_string_set(drop->ptr, "text", ((ID*)drag->poin)->name + 2);
+ RNA_string_set(drop->ptr, "text", ((ID *)drag->poin)->name + 2);
}
/* this region dropbox definition */