~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_text.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * blenlib/BKE_text.h (mar-2001 nzc)
3
3
 *      
4
 
 * $Id: BKE_text.h,v 1.6 2003/10/25 12:27:16 jiri Exp $ 
 
4
 * $Id: BKE_text.h,v 1.10 2005/04/10 14:01:41 stiv Exp $ 
5
5
 *
6
6
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
7
 *
88
88
void    run_python_script       (struct SpaceText *st);
89
89
int     jumptoline_interactive  (struct SpaceText *st);
90
90
void    txt_export_to_object    (struct Text *text);
 
91
void    txt_export_to_objects(struct Text *text);
 
92
void    unindent                (struct Text *text);
 
93
void    comment                 (struct Text *text);
 
94
void    indent                  (struct Text *text);
 
95
void    uncomment               (struct Text *text);
 
96
int     setcurr_tab             (struct Text *text);
91
97
 
92
98
/* Undo opcodes */
93
99
 
130
136
#endif
131
137
 
132
138
#endif
133