]> git.pld-linux.org Git - packages/agnubis.git/blob - agnubis-paned.patch
- tabs in preamble
[packages/agnubis.git] / agnubis-paned.patch
1 --- agnubis-20031120/src/interface.c.orig       2003-11-21 02:03:14.000000000 +0100
2 +++ agnubis-20031120/src/interface.c    2003-11-21 02:09:07.000000000 +0100
3 @@ -37,7 +37,6 @@
4  #include <stdio.h>
5  #include <gal/widgets/gtk-combo-stack.h>
6  #include <gal/widgets/gtk-combo-text.h>
7 -#include <gal/e-paned/e-hpaned.h>
8  
9  //#include <gtk/gtk.h>
10  #include <gnome.h>
11 @@ -505,10 +504,10 @@
12  
13         g_print("AgnubisGui::createClientArea() - enter\n");
14  
15 -       paned = e_hpaned_new();
16 -       e_paned_set_position (E_PANED (paned), 150);
17 +       paned = gtk_hpaned_new();
18 +       gtk_paned_set_position (GTK_PANED (paned), 150);
19         gtk_widget_show(paned);
20 -
21 +p
22         /* Navigation inside of the presentation */
23         notebook = gtk_notebook_new();
24         gtk_widget_show(notebook);
25 @@ -576,7 +575,7 @@
26         gtk_widget_show(label);
27         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), child, label);
28  
29 -       e_paned_add1(E_PANED(paned), notebook);
30 +       gtk_paned_add1(GTK_PANED(paned), notebook);
31  
32         /* Editing the presentation */
33         
34 @@ -610,7 +609,7 @@
35         gtk_widget_show(vscrollbar);
36  
37         table = gtk_table_new(3, 3, FALSE);
38 -       e_paned_add2(E_PANED(paned), table);
39 +       gtk_paned_add2(GTK_PANED(paned), table);
40         gtk_widget_show(table);
41         gtk_table_attach(GTK_TABLE(table), hruler, 1, 2, 0, 1, GTK_EXPAND|GTK_FILL|GTK_SHRINK, GTK_FILL, 0, 0);
42         gtk_table_attach(GTK_TABLE(table), vruler, 0, 1, 1, 2, GTK_FILL, GTK_EXPAND|GTK_FILL|GTK_SHRINK, 0, 0);
This page took 0.053329 seconds and 3 git commands to generate.