summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/entry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/widget/entry.cpp')
-rw-r--r--src/ui/widget/entry.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/widget/entry.cpp b/src/ui/widget/entry.cpp
index 73a5edac1..6159b4fe5 100644
--- a/src/ui/widget/entry.cpp
+++ b/src/ui/widget/entry.cpp
@@ -20,14 +20,14 @@ namespace Inkscape {
namespace UI {
namespace Widget {
-Entry::Entry(Glib::ustring const &label, Glib::ustring const &tooltip)
- : _label(label, true), _entry(), _tooltips()
-{
- pack_start(_label);
- pack_start(_entry);
-
- _tooltips.set_tip(*this, tooltip);
+Entry::Entry( Glib::ustring const &label, Glib::ustring const &tooltip,
+ Glib::ustring const &suffix,
+ Glib::ustring const &icon,
+ bool mnemonic)
+ : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic)
+{
}
+
} // namespace Widget
} // namespace UI