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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-08-29 17:50:40 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-08-29 17:50:40 +0400
commit1e613ba9c4bdb5fc279d2cf652f71a647ea54aae (patch)
tree928de98fd1ade7129215e741dcea960003aa1c78 /source/blender
parentb7e2cd5948a437cc5c599dec966f9dfc05212aeb (diff)
Fix building under windows after r59631 (grr, sorry :/ ).
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/interface/interface_templates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index 7c84a676827..e315d0c82a2 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -2526,7 +2526,7 @@ typedef struct {
static int cmpstringp(const void *p1, const void *p2)
{
/* Case-insensitive comparison. */
- return strcasecmp(((StringCmp *) p1)->name, ((StringCmp *) p2)->name);
+ return BLI_strcasecmp(((StringCmp *) p1)->name, ((StringCmp *) p2)->name);
}
static void uilist_filter_items_default(struct uiList *ui_list, struct bContext *UNUSED(C), struct PointerRNA *dataptr,