~ubuntu-branches/debian/sid/gnome-terminal/sid

« back to all changes in this revision

Viewing changes to src/profile-editor.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Emilio Pozuelo Monfort, Michael Biebl
  • Date: 2013-06-05 22:23:26 UTC
  • mfrom: (1.6.15) (10.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130605222326-ymxsw4ia0vri1zwh
Tags: 3.8.2-1
[ Emilio Pozuelo Monfort ]
* Remove obsolete build dependency on scrollkeeper.

[ Michael Biebl ]
* Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.9.4. No further changes.
* Add Build-Depends on autotools-dev as lintian was complaining about
  outdated config.{guess,sub}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Copyright © 2002 Havoc Pennington
3
3
 *
4
 
 * This library is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU Library General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 3 of the License, or (at your option) any later version.
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation, either version 3 of the License, or
 
7
 * (at your option) any later version.
8
8
 *
9
 
 * This library is distributed in the hope that it will be useful,
 
9
 * This program is distributed in the hope that it will be useful,
10
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 * Library General Public License for more details.
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
13
13
 *
14
 
 * You should have received a copy of the GNU Library General Public
15
 
 * License along with this library; if not, write to the
16
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 * Boston, MA 02111-1307, USA.
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
16
 */
19
17
 
20
18
#ifndef TERMINAL_PROFILE_EDITOR_H
21
19
#define TERMINAL_PROFILE_EDITOR_H
22
20
 
23
 
#include "terminal-profile.h"
 
21
#include <gio/gio.h>
24
22
#include <gtk/gtk.h>
25
23
 
26
24
G_BEGIN_DECLS
27
25
 
28
 
void terminal_profile_edit (TerminalProfile *profile,
29
 
                            GtkWindow       *transient_parent,
30
 
                            const char      *widget_name);
 
26
void terminal_profile_edit (GSettings  *profile,
 
27
                            GtkWindow  *transient_parent,
 
28
                            const char *widget_name);
31
29
 
32
30
G_END_DECLS
33
31