~ubuntu-branches/ubuntu/oneiric/geany/oneiric

« back to all changes in this revision

Viewing changes to src/notebook.c

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2010-08-30 18:09:16 UTC
  • mfrom: (1.1.14 upstream) (3.3.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100830180916-50o7tdspvusamxrr
Tags: 0.19.1-1
* New upstream release (Closes: #590284)
  - Thanks to Colomban Wendling for pursuing #590284
* add a sed hack to fix dlsearchpath for broken libtool used upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *      along with this program; if not, write to the Free Software
19
19
 *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
20
 *
21
 
 * $Id: notebook.c 4928 2010-05-16 17:45:39Z eht16 $
 
21
 * $Id: notebook.c 5131 2010-08-11 12:45:22Z ntrel $
22
22
 */
23
23
 
24
24
/*
499
499
                image = gtk_image_new_from_stock(GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
500
500
                gtk_container_add(GTK_CONTAINER(btn), image);
501
501
 
502
 
                align = gtk_alignment_new(1.0, 0.0, 0.0, 0.0);
 
502
                align = gtk_alignment_new(1.0, 0.5, 0.0, 0.0);
503
503
                gtk_container_add(GTK_CONTAINER(align), btn);
504
504
                gtk_box_pack_start(GTK_BOX(hbox), align, TRUE, TRUE, 0);
505
505