summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/entry.cpp
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2012-03-23 02:53:58 +0000
committerJohn Smith <removethis.john.q.public@bigmail.com>2012-03-23 02:53:58 +0000
commit924e671a1e5d76c1d25d4fcad9d0e9f015dc394e (patch)
treeb5edc420bece6f3a7227bdb1009af3fea51388b9 /src/ui/widget/entry.cpp
parentUI. Patch for Bug #666370 (Not all units in the Object Transform dialog are t... (diff)
downloadinkscape-924e671a1e5d76c1d25d4fcad9d0e9f015dc394e.tar.gz
inkscape-924e671a1e5d76c1d25d4fcad9d0e9f015dc394e.zip
Fix for 909328 : Dockable Find & Replace dialog
(bzr r11117)
Diffstat (limited to 'src/ui/widget/entry.cpp')
-rw-r--r--src/ui/widget/entry.cpp9
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