Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 215223
Collapse All | Expand All

(-)glade-2.6.8/glade/gnome/gnomecontrol.c (-3 lines)
Lines 1-41 Link Here
1
/*  Gtk+ User Interface Builder
1
/*  Gtk+ User Interface Builder
2
 *  Copyright (C) 1998  Damon Chaplin
2
 *  Copyright (C) 1998  Damon Chaplin
3
 *
3
 *
4
 *  This program is free software; you can redistribute it and/or modify
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
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation; either version 2 of the License, or
6
 *  the Free Software Foundation; either version 2 of the License, or
7
 *  (at your option) any later version.
7
 *  (at your option) any later version.
8
 *
8
 *
9
 *  This program is distributed in the hope that it will be useful,
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
12
 *  GNU General Public License for more details.
13
 *
13
 *
14
 *  You should have received a copy of the GNU General Public License
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program; if not, write to the Free Software
15
 *  along with this program; if not, write to the Free Software
16
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
 */
17
 */
18
18
19
#define BONOBO_DISABLE_DEPRECATED
20
#define BONOBO_UI_DISABLE_DEPRECATED
21
22
/*
19
/*
23
 * Glade only shows Bonobo controls which have a 'glade:show' attribute set
20
 * Glade only shows Bonobo controls which have a 'glade:show' attribute set
24
 * to TRUE, e.g. with this in their .server file:
21
 * to TRUE, e.g. with this in their .server file:
25
 *
22
 *
26
 *	<oaf_attribute name="glade:show" type="boolean" value="TRUE"/>
23
 *	<oaf_attribute name="glade:show" type="boolean" value="TRUE"/>
27
 *
24
 *
28
 */
25
 */
29
26
30
#include <config.h>
27
#include <config.h>
31
28
32
#include <gtk/gtkhbox.h>
29
#include <gtk/gtkhbox.h>
33
#include <gtk/gtklabel.h>
30
#include <gtk/gtklabel.h>
34
#include <gtk/gtkmain.h>
31
#include <gtk/gtkmain.h>
35
#include <gtk/gtkmenu.h>
32
#include <gtk/gtkmenu.h>
36
#include <gtk/gtkmenuitem.h>
33
#include <gtk/gtkmenuitem.h>
37
#include <gtk/gtkspinbutton.h>
34
#include <gtk/gtkspinbutton.h>
38
35
39
#include "../gb.h"
36
#include "../gb.h"
40
#include "../palette.h"
37
#include "../palette.h"
41
38

Return to bug 215223