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

« back to all changes in this revision

Viewing changes to source/blender/editors/space_text/text_header.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 */
30
30
 
31
31
 
32
 
#include <stdlib.h>
33
 
#include <string.h>
34
 
#include <stdio.h>
35
32
 
36
33
/* file time checking */
37
 
#include <ctype.h>
38
 
#include <sys/types.h>
39
 
#include <sys/stat.h>
40
34
 
41
35
#ifndef _WIN32
42
 
#  include <unistd.h>
43
36
#else
44
 
#  include <io.h>
45
 
#  include "BLI_winstuff.h"
46
37
#endif
47
38
 
48
39
#include "DNA_windowmanager_types.h"
50
41
#include "MEM_guardedalloc.h"
51
42
 
52
43
#include "BLI_blenlib.h"
53
 
#include "BLI_utildefines.h"
54
44
 
55
45
#include "BKE_context.h"
56
46
#include "BKE_screen.h"
59
49
 
60
50
#include "WM_types.h"
61
51
 
62
 
 
63
 
 
64
 
 
65
52
#ifdef WITH_PYTHON
66
53
// XXX #include "BPY_menus.h"
67
54
#endif
68
55
 
69
56
#include "text_intern.h"
70
57
 
71
 
#define HEADER_PATH_MAX 260
72
 
 
73
58
/* ************************ header area region *********************** */
74
59
 
75
60
/************************** properties ******************************/