comparison scripts/plot/uigetdir.m @ 11563:3c6e8aaa9555

Grammarcheck m-files before 3.4 release.
author Rik <octave@nomad.inbox5.com>
date Tue, 18 Jan 2011 20:55:01 -0800
parents fd0a3ac60b0e
children 8ac9687dbe9f
comparison
equal deleted inserted replaced
11562:1811f4f8b3b5 11563:3c6e8aaa9555
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {@var{dirname} =} uigetdir () 20 ## @deftypefn {Function File} {@var{dirname} =} uigetdir ()
21 ## @deftypefnx {Function File} {@var{dirname} =} uigetdir (@var{init_path}) 21 ## @deftypefnx {Function File} {@var{dirname} =} uigetdir (@var{init_path})
22 ## @deftypefnx {Function File} {@var{dirname} =} uigetdir (@var{init_path}, @var{dialog_name}) 22 ## @deftypefnx {Function File} {@var{dirname} =} uigetdir (@var{init_path}, @var{dialog_name})
23 ## Open a GUI dialog to select a directory. If @var{init_path} is not given 23 ## Open a GUI dialog to select a directory. If @var{init_path} is not given
24 ## the current working directory is used. @var{dialog_name} optionally be used to 24 ## the current working directory is used. @var{dialog_name} optionally be
25 ## customize the dialog title. 25 ## used to customize the dialog title.
26 ## @end deftypefn 26 ## @end deftypefn
27 27
28 ## Author: Kai Habel 28 ## Author: Kai Habel
29 29
30 function dirname = uigetdir (init_path = pwd, dialog_name = "Choose directory?") 30 function dirname = uigetdir (init_path = pwd, dialog_name = "Choose directory?")