~ubuntu-branches/ubuntu/saucy/bluefish/saucy

« back to all changes in this revision

Viewing changes to src/plugin_snippets/snippets_gui.c

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2013-05-09 14:36:58 UTC
  • mfrom: (17.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130509143658-kgqxj5c23oi0lk20
Tags: 2.2.4-2
* debian/control (Standards-Version): Bumped to 3.9.4.
* debian/copyright: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Bluefish HTML Editor
2
2
 * snippets_gui.c - plugin for snippets sidebar
3
3
 *
4
 
 * Copyright (C) 2006-2011 Olivier Sessink
5
 
 * Copyright (C) 2011 James Hayward
 
4
 * Copyright (C) 2006-2012 Olivier Sessink
 
5
 * Copyright (C) 2011-2012 James Hayward
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
594
594
        vbox = gtk_vbox_new(FALSE, 1);
595
595
 
596
596
        entry = gtk_entry_new();
597
 
#if GTK_CHECK_VERSION(2,16,0)
598
597
        gtk_entry_set_icon_from_stock(GTK_ENTRY(entry), GTK_ENTRY_ICON_PRIMARY, GTK_STOCK_FIND);
599
598
        gtk_entry_set_icon_activatable(GTK_ENTRY(entry), GTK_ENTRY_ICON_PRIMARY, TRUE);
600
 
#endif
601
599
        /*g_signal_connect(G_OBJECT(entry), "changed", G_CALLBACK(bmark_search_changed), bfwin); */
602
600
        gtk_box_pack_start(GTK_BOX(vbox), entry, FALSE, TRUE, 0);
603
601