~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to src/interp/rptui.c

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-08-14 00:02:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20070814000204-mpv5faygl0dgq3qi
Tags: 3.0.61-1
* New upstream release. (Closes: #387856).
* Fixing documentation build problems also fixes FTBFS if built twice in a
  row. (Closes: #424543).
* Adding lynx as a build dependency. This is necessary to generate txt files
  from html, discovered while fixing #424543.
* Upstream fix: charset for gedcom file in unicode. (Closes: #396206).
* Upstream fim: updating documentation about desc-tex2. (Closes: #405501).
* Bumping Standards-Version to 3.7.2 without package changes.
* Dropping local debian patches added upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
*/
8
8
/*=============================================================
9
9
 * rptui.c -- Wrappers for UI functions used by report interpreter
 
10
 * These take care of switching to UI locale, and keeping GUI wait time
 
11
 *  accounted separately from report run time.
10
12
 *==============================================================*/
11
13
 
12
14
 
87
89
        return seq;
88
90
}
89
91
STRING
90
 
rptui_ask_for_indi_key (STRING ttl, CONFIRMQ confirmq, ASK1Q ask1)
 
92
rptui_ask_for_indi_key (STRING ttl, ASK1Q ask1)
91
93
{
92
94
        STRING s;
93
95
        begin_rptui();
94
 
        s = ask_for_indi_key(ttl, confirmq, ask1);
 
96
        s = ask_for_indi_key(ttl, ask1);
95
97
        end_rptui();
96
98
        return s;
97
99
}