diff options
Diffstat (limited to 'src/ui/widget/entry.cpp')
| -rw-r--r-- | src/ui/widget/entry.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ui/widget/entry.cpp b/src/ui/widget/entry.cpp index 7ac8532fb..08617433c 100644 --- a/src/ui/widget/entry.cpp +++ b/src/ui/widget/entry.cpp @@ -24,7 +24,14 @@ Entry::Entry( Glib::ustring const &label, Glib::ustring const &tooltip, : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic) { } - + +ComboBoxText::ComboBoxText( Glib::ustring const &label, Glib::ustring const &tooltip, + Glib::ustring const &suffix, + Glib::ustring const &icon, + bool mnemonic) + : Labelled(label, tooltip, new Gtk::ComboBoxText(true), suffix, icon, mnemonic) +{ +} } // namespace Widget } // namespace UI |
