~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/makesrna/intern/rna_wm_api.c

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Roy
  • Date: 2011-06-24 11:13:28 UTC
  • mto: (14.1.6 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20110624111328-27ribg6l36edf2ay
Tags: upstream-2.58-svn37702
ImportĀ upstreamĀ versionĀ 2.58-svn37702

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: rna_wm_api.c 35971 2011-04-03 10:04:16Z campbellbarton $
 
2
 * $Id: rna_wm_api.c 36547 2011-05-08 10:29:40Z campbellbarton $
3
3
 *
4
4
 * ***** BEGIN GPL LICENSE BLOCK *****
5
5
 *
135
135
        RNA_def_property_flag(parm, PROP_REQUIRED);
136
136
        RNA_def_property_range(parm, 0.0, FLT_MAX);
137
137
        RNA_def_property_ui_text(parm, "Time Step", "Interval in seconds between timer events");
138
 
        parm= RNA_def_pointer(func, "window", "Window", "", "Window to attach the timer to or None.");
 
138
        RNA_def_pointer(func, "window", "Window", "", "Window to attach the timer to or None.");
139
139
        parm= RNA_def_pointer(func, "result", "Timer", "", "");
140
140
        RNA_def_function_return(func, parm);
141
141