~ubuntu-branches/ubuntu/trusty/gq/trusty

« back to all changes in this revision

Viewing changes to src/dt_password.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2009-10-25 23:34:56 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091025233456-i794n3yg2cff930j
Tags: 1.3.4-1
* QA upload.
  + Set maintainer to Debian QA Group <packages@qa.debian.org>.
* New upstream release. (Closes: #534705).
  + Does not segfault on amd64. (Closes: #444312).
  + Remove all existing patches and change patch system to quilt.
  + Replace dpatch build-dep with quilt.
* 01_desktop_file.diff - Remove encoding and bogus categories 
  from desktop file.
* Copy in config.{sub,guess} on configure, rm them on clean.
  + Add build-dep on autotools-dev.
* Make clean not ignore errors.
* Add copyright holders and version path to GPL (GPL-2).
* Update watch file to use SF redirector. (Closes: #449749).
* Bump debhelper build-dep and compat to 5.
* Bump Standards Version to 3.8.3.
  + Menu policy transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
23
*/
24
24
 
25
 
/* $Id: dt_password.h 946 2006-08-24 17:37:36Z herzi $ */
 
25
/* $Id$ */
26
26
 
27
27
#ifndef DT_PASSWORD_H_INCLUDED
28
28
#define DT_PASSWORD_H_INCLUDED
43
43
 
44
44
/* Methods, only to be used by subclasses */
45
45
GtkWidget *dt_password_get_widget(int error_context,
46
 
                                  struct formfill *form, GByteArray *data,
47
 
                                  GCallback *activatefunc,
 
46
                                  GqFormfill *form, GByteArray *data,
 
47
                                  GCallback  activatefunc,
48
48
                                  gpointer funcdata);
49
 
GByteArray *dt_password_get_data(struct formfill *form, GtkWidget *widget);
50
 
void dt_password_set_data(struct formfill *form, GByteArray *data,
 
49
GByteArray *dt_password_get_data(GqFormfill *form, GtkWidget *widget);
 
50
void dt_password_set_data(GqFormfill *form, GByteArray *data,
51
51
                          GtkWidget *widget);
52
52
 
53
53
G_END_DECLS