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

« back to all changes in this revision

Viewing changes to src/browse-export.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:
1
 
/*
2
 
    GQ -- a GTK-based LDAP client
3
 
    Copyright (C) 1998-2003 Bert Vermeulen
4
 
    Copyright (C) 2002-2003 Peter Stamfest
5
 
 
6
 
    This program is released under the Gnu General Public License with
7
 
    the additional exemption that compiling, linking, and/or using
8
 
    OpenSSL is allowed.
9
 
 
10
 
    This program is free software; you can redistribute it and/or modify
11
 
    it under the terms of the GNU General Public License as published by
12
 
    the Free Software Foundation; either version 2 of the License, or
13
 
    (at your option) any later version.
14
 
 
15
 
    This program is distributed in the hope that it will be useful,
16
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
    GNU General Public License for more details.
19
 
 
20
 
    You should have received a copy of the GNU General Public License
21
 
    along with this program; if not, write to the Free Software
22
 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
 
*/
24
 
 
25
 
/* $Id: browse-export.h 960 2006-09-02 20:42:46Z herzi $ */
26
 
 
27
 
#ifndef GQ_BROWSE_EXPORT_H_INCLUDED
28
 
#define GQ_BROWSE_EXPORT_H_INCLUDED
29
 
 
30
 
#include <glib.h>               /* GList */
31
 
#include <gtk/gtk.h>            /* GtkWidget */
32
 
 
33
 
#include "gq-server.h"          /* GqServer */
34
 
 
35
 
/* to_export is a GList of dn_on_server objects */
36
 
void export_many(int error_context, GtkWidget *transient_for, 
37
 
                 GList *to_export);
38
 
 
39
 
#endif
40
 
 
41
 
 
42
 
/* 
43
 
   Local Variables:
44
 
   c-basic-offset: 5
45
 
   End:
46
 
 */
47