~ubuntu-branches/ubuntu/utopic/assogiate/utopic

« back to all changes in this revision

Viewing changes to src/type-dialog.cc

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Legout
  • Date: 2011-05-09 19:10:40 UTC
  • mfrom: (1.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110509191040-ld5c2ypzloilevto
Tags: 0.2.1-2
* Upstream abandoned assogiate
  - Remove Homepage field from debian/control
  - Remove watch file
* debian/control:
  - Bump to Standards-Version 3.9.2
  - Add ${misc:Depends}
  - Remove Build-Depends on cdbs
  - Build-Depends on debhelper (>= 8)
* Update copyright file to dep5
* debian/patches/01_desktop.in.patch: Switch to quilt
* debian/patches/02_typedialog.cc.patch: Fix ftbfs (Closes: #624924)
* Use debhelper minimal rules file
* debian/compat: Bump to 8
* Switch to 3.0 (quilt) source format:
  - Add debian/source file
* debian/assogiate.docs: Added

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
        general_upper->pack_start(*Gtk::manage(general_info), true, true);
145
145
 
146
146
        if (renameable) {
147
 
                Gtk::ComboBox *cb = new Gtk::ComboBox(CategoriesStore::get_selector());
 
147
                Gtk::ComboBox *cb = new Gtk::ComboBox(CategoriesStore::get_selector(), false);
148
148
                cb->signal_changed().connect
149
149
                        (sigc::mem_fun(*this, &TypeDialog::on_category_changed));
150
150
                m_category_widget = cb;
622
622
        } else {
623
623
                AddItemDialog adder(this, _("Add File Contents Rule"));
624
624
 
625
 
                Gtk::ComboBox type(MagicTypesStore::get());
 
625
                Gtk::ComboBox type(MagicTypesStore::get(), false);
626
626
                type.pack_start(MagicTypesColumns::get().name);
627
627
                adder.add_item(_("_Type:"), type, true);
628
628