diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2006-11-29 20:35:57 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2006-11-29 20:35:57 +0000 |
| commit | 9e78ac488bd9589a9ed263a5b236c921c7dafc3d (patch) | |
| tree | 51bd44e8bd0db6b70052e54023089f1171c50f62 /src/ui/widget/entry.cpp | |
| parent | prevent compiling error on gettimeofday on mingw compiler (diff) | |
| download | inkscape-9e78ac488bd9589a9ed263a5b236c921c7dafc3d.tar.gz inkscape-9e78ac488bd9589a9ed263a5b236c921c7dafc3d.zip | |
C++ Find dialog almost complete! (it works, but it is biiig now)
(bzr r2054)
Diffstat (limited to 'src/ui/widget/entry.cpp')
| -rw-r--r-- | src/ui/widget/entry.cpp | 14 |
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
|
