~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/intern/gpencil.c

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
#include "BLI_blenlib.h"
40
40
#include "BLI_utildefines.h"
41
41
 
 
42
#include "BLF_translation.h"
 
43
 
42
44
#include "DNA_gpencil_types.h"
43
45
 
44
46
#include "BKE_global.h"
184
186
        
185
187
        /* auto-name */
186
188
        BLI_strncpy(gpl->info, name, sizeof(gpl->info));
187
 
        BLI_uniquename(&gpd->layers, gpl, "GP_Layer", '.', offsetof(bGPDlayer, info), sizeof(gpl->info));
 
189
        BLI_uniquename(&gpd->layers, gpl, DATA_("GP_Layer"), '.', offsetof(bGPDlayer, info), sizeof(gpl->info));
188
190
        
189
191
        /* make this one the active one */
190
192
        if (setactive)